Jonatas Miguel
Jonatas Miguel
@bcharna Although I have this issue as well on a project I'm working on, I don't think this is related to react-rails at all, but indeed webpack, so, I'm thinking...
ts-morph 11.0.0 nodejs 14.16.1 I got an error similar to what @LarsBauer had seen, and in my case I had code that looked somewhat like: ```typescript /** * Copied from...
> @jdfm - ahhh, so it was just the leading comment in the file? That seems to have been the case for me at least. It would be interesting to...
I can confirm that this is an issue with `.gitlab-ci.yml` files as well, even though the values in the schema are defined with `format: uri-reference` ([link](https://json.schemastore.org/gitlab-ci.json#:~:text=type%22%3A%20%22string%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22format%22%3A%20%22-,uri-reference,-%22%2C%0A%20%20%20%20%20%20%20%20%20%20%22pattern%22%3A%20%22%5E(https%3F%3A//%7C/).%2B%5C%5C.ya)) and some of the...
The problem with the `initial` value for display is that it will use the value that is defined for it in the standard, not what's defined by default by the...
Is this really something that `caniuse-lite` should be tackling? I could understand if the difference was something like MBs to GBs, but, KBs to MBs isn't such an unacceptable difference...
Should there just be a `--full-bail` option along with the `--bail` option? I think my confusion about how `--bail` works revolves around what `test suite` means, maybe this is similar...
> A workaround that involves not using aliases is using [Node.js self-referencing](https://nodejs.org/api/packages.html#self-referencing-a-package-using-its-name). > > For instance, see the following code: > > ```js > // package.json > { > "name":...
@joelburget This may be a bit late to the party, but, I was able to match block comments with the following pattern: ```grit r"/\*(?s).*?(?-s)\*/" ``` The above pattern properly captures...
@joelburget I decided to dig a little deeper into the patterns that are part of the standard library of gritql patterns and it seems there is some code that matches...