Jakob Krigovsky
Jakob Krigovsky
I’d be interested in [import/order](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md).
Thanks! I can confirm that `--onlyChanged` now works properly with Detox v20.
As far as I can tell, `--onlyChanged` works fine with `--retries`; it respawns `jest` with `--onlyChanged` and the failed test file. If there are no changed files, it immediately exits...
`ssl=false` is documented in [pg-connection-string’s readme](https://github.com/brianc/node-postgres/blob/c6aa29ade9149be7378a559374f3d578153d01c5/packages/pg-connection-string/README.md#tcp-connections), though. Would you rather like to remove it there? Alternatively, we could remove support for all `ssl` values except `true` to align with libpq....
I’d prefer keeping the term “conditional GET” because it seems to be more widespread and easier to understand. @da2x [Your linked RFC](https://tools.ietf.org/html/rfc7234#section-4.3.2) even calls them “conditional requests”: > Each client...
> schemastore describes every property using `description` Adding `description` to every property is quite noisy and makes the schema harder to read, in my opinion. Additionally, it makes using `$ref`...
> The description is important because it is being used by supporting editors like Visual Studio and IntelliJ to provide hover tooltips. Thank you, @madskristensen, this totally makes sense. [I...
I’ve published [jsonfeed-schema](https://github.com/sonicdoe/jsonfeed-schema) v0.5.0, adding support for the recently-released [JSON Feed Version 1.1](https://jsonfeed.org/version/1.1).
I was also surprised by this part of the spec and also didn’t immediately realize that `id` doesn’t have to be a string. For one, it clearly states string in...
Am I correct in interpreting this as another case of [Postel’s Law](https://en.wikipedia.org/wiki/Robustness_principle), i.e., a parser shouldn’t fail over this but a validator would complain?