Justin Collum

Results 15 issues of Justin Collum

```ts const EventSchema = z.union([ z.object({ action: z.enum(['create', 'drop', 'update', 'hydrate']), }), z.object({ action: z.literal('rollback'), tag: z.string().optional().default('initialState'), }), ]); ``` Error: ` src/handler.ts(64,3): error TS2589: Type instantiation is excessively deep...

From https://github.com/gotwarlost/istanbul/blob/master/ignoring-code-for-coverage.md: `A coverage skip hint looks like /* istanbul ignore [non-word] [optional-docs] */` Except there's no list of what `word` and `optional-docs` can be nor any link to where...

I'm assuming this repo is for this site: https://partiql.org/tutorial.html It would be helpful to add anchor tag links to all the headers. Helps me share the section of documentation I...

related: https://github.com/import-js/eslint-plugin-import/issues/1390 https://github.com/import-js/eslint-plugin-import?tab=readme-ov-file#importcore-modules The docs definitely imply that all you need for `import/core-modules` is a list of modules to import. But it should be ``` import/core-modules: [2, electron ] ```...

As part of normal dev work I added a snapshot (Jest) file to a workspace in my repo. This apparently broke Eslint. When I remove the snapshot file the TypeError...

help wanted