@ts-runtypes/devtools 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -66
- package/dist/eslint/diagnosticRouting.d.ts +1 -1
- package/dist/eslint/diagnosticRouting.d.ts.map +1 -1
- package/dist/eslint/diagnosticRouting.js +9 -0
- package/dist/eslint/diagnosticRouting.js.map +1 -1
- package/dist/eslint/index.d.ts.map +1 -1
- package/dist/eslint/index.js +15 -0
- package/dist/eslint/index.js.map +1 -1
- package/dist/eslint/lint-worker.js +28 -6
- package/dist/eslint/lint-worker.js.map +1 -1
- package/dist/eslint/session-protocol.d.ts +5 -0
- package/dist/eslint/session-protocol.d.ts.map +1 -1
- package/dist/eslint/session-protocol.js +2 -0
- package/dist/eslint/session-protocol.js.map +1 -1
- package/dist/eslint/session.d.ts.map +1 -1
- package/dist/eslint/session.js +7 -1
- package/dist/eslint/session.js.map +1 -1
- package/dist/go-generated/diagnosticCatalog.generated.d.ts.map +1 -1
- package/dist/go-generated/diagnosticCatalog.generated.js +62 -27
- package/dist/go-generated/diagnosticCatalog.generated.js.map +1 -1
- package/dist/go-generated/tsconfig-plugin-keys.generated.d.ts +3 -0
- package/dist/go-generated/tsconfig-plugin-keys.generated.d.ts.map +1 -0
- package/dist/go-generated/tsconfig-plugin-keys.generated.js +18 -0
- package/dist/go-generated/tsconfig-plugin-keys.generated.js.map +1 -0
- package/dist/packages/ts-runtypes-devtools/tsconfig.test.tsbuildinfo +1 -1
- package/dist/plugin-option-keys.d.ts +3 -0
- package/dist/plugin-option-keys.d.ts.map +1 -0
- package/dist/plugin-option-keys.js +24 -0
- package/dist/plugin-option-keys.js.map +1 -0
- package/dist/protocol.d.ts +9 -1
- package/dist/protocol.d.ts.map +1 -1
- package/dist/protocol.js.map +1 -1
- package/dist/resolver-client.d.ts +36 -10
- package/dist/resolver-client.d.ts.map +1 -1
- package/dist/resolver-client.js +140 -48
- package/dist/resolver-client.js.map +1 -1
- package/dist/unplugin.d.ts +17 -0
- package/dist/unplugin.d.ts.map +1 -1
- package/dist/unplugin.js +124 -4
- package/dist/unplugin.js.map +1 -1
- package/oxlint-recommended.json +1 -0
- package/package.json +3 -3
|
@@ -2,7 +2,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
2
2
|
CES001: {
|
|
3
3
|
headline: '`cloneExactShape` does not support unions with object members — the emitter cannot know which declared shape to rebuild at runtime.',
|
|
4
4
|
severity: 'error',
|
|
5
|
-
detail: 'A clone built from the declared shape needs to know WHICH union arm the\nruntime value matches; v1 has no arm discrimination, and silently keeping\nunknown keys would defeat the strip guarantee, so the build fails instead.\n\nWorkarounds: narrow the value to one arm before cloning (one\n`
|
|
5
|
+
detail: 'A clone built from the declared shape needs to know WHICH union arm the\nruntime value matches; v1 has no arm discrimination, and silently keeping\nunknown keys would defeat the strip guarantee, so the build fails instead.\n\nWorkarounds: narrow the value to one arm before cloning (one\n`createCloneExactShapeFn<Arm>()` per arm), or restructure the union into a\nsingle object with optional properties.',
|
|
6
6
|
},
|
|
7
7
|
CES003: {
|
|
8
8
|
headline: '`cloneExactShape` cannot clone a function-typed value.',
|
|
@@ -29,6 +29,11 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
29
29
|
severity: 'warning',
|
|
30
30
|
detail: "Declared members are never dropped (only UNDECLARED keys are — that is the\nstrip guarantee). A value the emitter cannot rebuild passes through by\nreference instead: the clone's property points at the SAME handle as the\ninput's, so mutations through it are visible on both sides. Register\n`overrideCloneExactShape<T>()` if this type needs custom copying.",
|
|
31
31
|
},
|
|
32
|
+
CFG001: {
|
|
33
|
+
headline: 'Project tsconfig failed to load ({0}) — the build, the linter, and the CLI all read this config, so nothing can run until it loads.',
|
|
34
|
+
severity: 'error',
|
|
35
|
+
detail: 'RunTypes derives every type query from your project tsconfig, the same\nfile your build uses. A tsconfig that was named (or found next to your\nproject) but is missing or does not parse stops the operation, exactly\nlike `tsc --project` would, instead of silently falling back to defaults\nthat could resolve your types differently.\n\nFix — repair the tsconfig (the message names the first parse problem),\nor point the tooling at the right file (the plugin/lint `tsconfig`\nsetting, or the CLI `--tsconfig` flag).',
|
|
36
|
+
},
|
|
32
37
|
CLS001: {
|
|
33
38
|
headline: 'class `{0}` is serialized structurally; register it via `registerClassSerializer({0}, { deserialize })` to round-trip a real instance.',
|
|
34
39
|
severity: 'warning',
|
|
@@ -37,7 +42,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
37
42
|
CTA001: {
|
|
38
43
|
headline: '`CompTimeArgs<T>` argument must be a literal at the call site, or a `const` whose initializer is itself entirely literal (a same-module or imported `const` both work).',
|
|
39
44
|
severity: 'error',
|
|
40
|
-
detail: "The build resolves the argument before running, so it needs to read its\nvalue from the source. Function-call results, property accesses, ternary\nexpressions, and `let`/`var` bindings can't be evaluated at build time.\nAccepted: an inline literal, or a `const` whose initializer is itself\nfully literal — including a `const` imported from another module. (An\nobject `const` must be `as const` so its members stay literal; see CTA004.)\n\nFix — inline at the call site:\n- const opts = getOpts();\n- const isUser =
|
|
45
|
+
detail: "The build resolves the argument before running, so it needs to read its\nvalue from the source. Function-call results, property accesses, ternary\nexpressions, and `let`/`var` bindings can't be evaluated at build time.\nAccepted: an inline literal, or a `const` whose initializer is itself\nfully literal — including a `const` imported from another module. (An\nobject `const` must be `as const` so its members stay literal; see CTA004.)\n\nFix — inline at the call site:\n- const opts = getOpts();\n- const isUser = createValidateFn<User>(undefined, opts);\n+ const isUser = createValidateFn<User>(undefined, {mode: 'unsafe'});\n\nFix — use a const of literals (here or in another module):\n const opts = {mode: 'unsafe'} as const; // literal initializer ✓\n const isUser = createValidateFn<User>(undefined, opts);",
|
|
41
46
|
},
|
|
42
47
|
CTA002: {
|
|
43
48
|
headline: '`CompTimeArgs<T>` literal nesting exceeds the depth cap (16) — refactor to flatten.',
|
|
@@ -52,7 +57,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
52
57
|
CTA004: {
|
|
53
58
|
headline: '`CompTimeArgs<T>` value comes from a `const` with a widened (non-literal) member ({0}) — declare the const `as const`.',
|
|
54
59
|
severity: 'error',
|
|
55
|
-
detail: "A `const` used as a CompTimeArgs / CompTimeFnArgs argument (a whole option\nbag, or a builder child) must carry LITERAL value types, so the value the\nbuild reads matches the type TypeScript resolves the call against. Without\n`as const`, an object literal's members widen — `{strategy: 'mutate'}`\nbecomes `{strategy: string}` — which can let the type system select one\nfunction variant while the build injects another.\n\nWhole imported consts now resolve cross-module (like a spread fragment), so\nthis rule keeps that path sound.\n\nFix — add `as const`:\n- const preset = {strategy: 'mutate'};\n+ const preset = {strategy: 'mutate'} as const;\n
|
|
60
|
+
detail: "A `const` used as a CompTimeArgs / CompTimeFnArgs argument (a whole option\nbag, or a builder child) must carry LITERAL value types, so the value the\nbuild reads matches the type TypeScript resolves the call against. Without\n`as const`, an object literal's members widen — `{strategy: 'mutate'}`\nbecomes `{strategy: string}` — which can let the type system select one\nfunction variant while the build injects another.\n\nWhole imported consts now resolve cross-module (like a spread fragment), so\nthis rule keeps that path sound.\n\nFix — add `as const`:\n- const preset = {strategy: 'mutate'};\n+ const preset = {strategy: 'mutate'} as const;\n createJsonEncoderFn(undefined, preset);",
|
|
56
61
|
},
|
|
57
62
|
FB001: {
|
|
58
63
|
headline: 'Type `{0}` can never be deserialised from binary — the generated function will always fail.',
|
|
@@ -125,7 +130,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
125
130
|
FMT003: {
|
|
126
131
|
headline: 'TypeFormat mockSample violates a sibling constraint — {0}',
|
|
127
132
|
severity: 'error',
|
|
128
|
-
detail: "A mockSample is meant to be a canonical VALID value for the format, so it\nmust satisfy the format's own statically checkable siblings (length /\nminLength / maxLength, and the plain-string allowedChars / disallowedChars /\ndisallowedValues ops). A sample that its siblings reject means\n`
|
|
133
|
+
detail: "A mockSample is meant to be a canonical VALID value for the format, so it\nmust satisfy the format's own statically checkable siblings (length /\nminLength / maxLength, and the plain-string allowedChars / disallowedChars /\ndisallowedValues ops). A sample that its siblings reject means\n`createMockDataFn` would either produce an invalid value or filter every\nsample out and throw at mock time.\n\nLengths are counted in UTF-16 code units, exactly as the emitted validator's\n`.length` check counts them.\n\nFix — adjust the offending sample(s), or relax the constraint:\n - String<{minLength: 5; pattern: {source: '^b+$'; mockSamples: ['b', 'bb']}}>\n+ String<{minLength: 1; pattern: {source: '^b+$'; mockSamples: ['b', 'bb']}}>",
|
|
129
134
|
},
|
|
130
135
|
FMT004: {
|
|
131
136
|
headline: "TypeFormat pattern /{0}/ carries mockSamples but uses JS-only regex features RE2 can't compile ({1}) — samples can't be verified at build time.",
|
|
@@ -135,7 +140,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
135
140
|
FT002: {
|
|
136
141
|
headline: 'Unknown field `{0}` — the type does not declare it, so this FriendlyText entry is dead.',
|
|
137
142
|
severity: 'error',
|
|
138
|
-
detail: "The FriendlyText map names a field the source type does not have\n(removed, renamed, or a typo). Its labels and messages can never be\nused.\n\nExample — `nick` no longer exists on the type:\n interface User { name: string }\n export const friendlyUser: FriendlyText<User> = {\n name: {rt$label: 'Name'},\n- nick: {rt$label: 'Nickname'},\n };\n\nFix — remove the entry, or re-run the reconcile so the mirror follows\nthe type (a renamed field carries its authored values along):\n ts-runtypes
|
|
143
|
+
detail: "The FriendlyText map names a field the source type does not have\n(removed, renamed, or a typo). Its labels and messages can never be\nused.\n\nExample — `nick` no longer exists on the type:\n interface User { name: string }\n export const friendlyUser: FriendlyText<User> = {\n name: {rt$label: 'Name'},\n- nick: {rt$label: 'Nickname'},\n };\n\nFix — remove the entry, or re-run the reconcile so the mirror follows\nthe type (a renamed field carries its authored values along):\n ts-runtypes enrich <source.ts> <Type> --update",
|
|
139
144
|
},
|
|
140
145
|
FT003: {
|
|
141
146
|
headline: 'Error key `{0}` is not a declared constraint of this field — the message can never fire.',
|
|
@@ -178,34 +183,39 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
178
183
|
detail: "The generator stamps a `@todo` line on every freshly-scaffolded const in\na FriendlyText mirror file. It means \"this skeleton still carries\ngenerated blanks\". A clean, committed mirror has none.\n\nExample — a fresh scaffold:\n /** @rtType User#a1b2c3 @rtIds {name: d4e5f6} */\n- // @todo: generated skeleton — fill in real data, then delete this line\n export const friendlyUser: FriendlyText<User> = {\n- name: {rt$label: ''},\n+ name: {rt$label: 'Name'},\n };\n\nFix — author the real labels and error messages for the const, then\ndelete the whole `@todo` line (the compiler never removes it for you).",
|
|
179
184
|
},
|
|
180
185
|
FT021: {
|
|
181
|
-
headline: 'Stale `@rtOrphan` carcass — run `ts-runtypes
|
|
186
|
+
headline: 'Stale `@rtOrphan` carcass — run `ts-runtypes enrich --prune` to remove it (or restore the type).',
|
|
182
187
|
severity: 'error',
|
|
183
|
-
detail: 'The reconcile commented this FriendlyText const out because its source\ntype was deleted or renamed. The carcass preserves your authored labels\nand messages so a reappearing type can restore them — but a clean,\ncommitted mirror has none.\n\nFix — if the type is really gone, prune the carcass:\n ts-runtypes
|
|
188
|
+
detail: 'The reconcile commented this FriendlyText const out because its source\ntype was deleted or renamed. The carcass preserves your authored labels\nand messages so a reappearing type can restore them — but a clean,\ncommitted mirror has none.\n\nFix — if the type is really gone, prune the carcass:\n ts-runtypes enrich --prune\n\nFix — if the type was renamed, re-run the reconcile; a matching carcass\nis restored with your values intact:\n ts-runtypes enrich <source.ts> <NewName> --update',
|
|
184
189
|
},
|
|
185
190
|
FT022: {
|
|
186
|
-
headline: 'Stale `@rtOrphanChild` field carcass — run `ts-runtypes
|
|
191
|
+
headline: 'Stale `@rtOrphanChild` field carcass — run `ts-runtypes enrich --prune` to remove it (or restore the field).',
|
|
192
|
+
severity: 'error',
|
|
193
|
+
detail: "The reconcile commented this field out because the source type no longer\ndeclares it. The carcass preserves your authored value inline — but a\nclean, committed mirror has none.\n\nExample:\n export const friendlyUser: FriendlyText<User> = {\n- /* @rtOrphanChild nick: {rt$label: 'Nickname'}, */\n name: {rt$label: 'Name'},\n };\n\nFix — if the field is really gone: `ts-runtypes enrich --prune`.\nFix — if the field was renamed, re-run `--update`; the authored value\nmoves to the renamed field when the ids match.",
|
|
194
|
+
},
|
|
195
|
+
FT023: {
|
|
196
|
+
headline: 'Unfilled blank value — a scaffolded label or message is still empty; fill in the real text.',
|
|
187
197
|
severity: 'error',
|
|
188
|
-
detail: "
|
|
198
|
+
detail: "An empty string (`''`) at a `rt$label` / `rt$errors` slot is a generated\nblank that never got authored — it ships blank to the UI wherever the\nfriendly text is shown, so it is exactly as incomplete as a `@todo`\nmarker. This is why removing the `@todo` line without filling the values\nis not \"done\".\n\nExample:\n export const friendlyUser: FriendlyText<User> = {\n- name: {rt$label: ''},\n+ name: {rt$label: 'Name'},\n };\n\nFix — author the real label / message. Only the completeness gate\n(`ts-runtypes enrich --require-complete`) fails on it; a plain\n`--no-emit` health check reports it without failing.",
|
|
189
199
|
},
|
|
190
200
|
GE000: {
|
|
191
201
|
headline: 'Cannot read enrichment mirror file: {0}',
|
|
192
202
|
severity: 'error',
|
|
193
|
-
detail: 'The drift check could not read this mirror file (permissions, a broken\nsymlink, or a race with a concurrent write).\n\nFix — make the file readable and re-run `ts-runtypes
|
|
203
|
+
detail: 'The drift check could not read this mirror file (permissions, a broken\nsymlink, or a race with a concurrent write).\n\nFix — make the file readable and re-run `ts-runtypes enrich --no-emit`.',
|
|
194
204
|
},
|
|
195
205
|
GE001: {
|
|
196
|
-
headline: 'Mirror location drift — the source maps to `{0}` but this file lives at `{1}`; re-run `ts-runtypes
|
|
206
|
+
headline: 'Mirror location drift — the source maps to `{0}` but this file lives at `{1}`; re-run `ts-runtypes enrich` to relocate.',
|
|
197
207
|
severity: 'warning',
|
|
198
|
-
detail: 'Each source file mirrors to ONE computed path per family under the\nenrich root (friendly/… and mock/…, plus per-locale translation twins).\nThis file is not at its computed location — usually after a source move,\
|
|
208
|
+
detail: 'Each source file mirrors to ONE computed path per family under the\nenrich root (friendly/… and mock/…, plus per-locale translation twins).\nThis file is not at its computed location — usually after a source move,\na genDir change, or a pre-split combined mirror that still needs\nmigrating.\n\nFix — re-run the generator; it writes the per-family files at the right\npaths and migrates a legacy combined mirror:\n ts-runtypes enrich <source.ts> <Type> --update',
|
|
199
209
|
},
|
|
200
210
|
GE002: {
|
|
201
|
-
headline: 'Breadcrumb source `{0}` no longer exists ({1}) — the mirror is orphaned; delete it or re-run `ts-runtypes
|
|
211
|
+
headline: 'Breadcrumb source `{0}` no longer exists ({1}) — the mirror is orphaned; delete it or re-run `ts-runtypes enrich`.',
|
|
202
212
|
severity: 'error',
|
|
203
213
|
detail: "The mirror's `import type { … } from '<source>'` breadcrumb resolves to\na file that is gone. Its consts describe types that no longer exist\nanywhere.\n\nFix — if the source was deleted, delete the mirror file (both family\nfiles and any translation twins).\nFix — if the source moved, re-run the generator from the new location\nand prune the old mirror.",
|
|
204
214
|
},
|
|
205
215
|
GE003: {
|
|
206
|
-
headline: 'Source {0} no longer declares type `{1}` — re-run `ts-runtypes
|
|
216
|
+
headline: 'Source {0} no longer declares type `{1}` — re-run `ts-runtypes enrich`.',
|
|
207
217
|
severity: 'error',
|
|
208
|
-
detail: 'The mirror imports a type name its source file no longer declares (the\ntype was renamed or removed). The reconcile turns its consts into\n`@rtOrphan` carcasses so your authored values survive.\n\nFix — re-run the reconcile against the current source, then prune any\ncarcasses that should not come back:\n ts-runtypes
|
|
218
|
+
detail: 'The mirror imports a type name its source file no longer declares (the\ntype was renamed or removed). The reconcile turns its consts into\n`@rtOrphan` carcasses so your authored values survive.\n\nFix — re-run the reconcile against the current source, then prune any\ncarcasses that should not come back:\n ts-runtypes enrich <source.ts> <Type> --update\n ts-runtypes enrich --prune',
|
|
209
219
|
},
|
|
210
220
|
HUK010: {
|
|
211
221
|
headline: 'Property `{0}` is a function — `hasUnknownKeys` does not handle function values, so this property is silently not checked.',
|
|
@@ -219,7 +229,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
219
229
|
MD001: {
|
|
220
230
|
headline: 'Unknown field `{0}` — the type does not declare it, so this MockData entry is dead.',
|
|
221
231
|
severity: 'error',
|
|
222
|
-
detail: "The MockData map names a field the source type does not have (removed,\nrenamed, or a typo). Its pool/range can never feed a generated mock.\n\nExample — `nick` no longer exists on the type:\n interface User { name: string }\n export const mockUser: MockData<User> = {\n name: {pool: ['Ada', 'Linus']},\n- nick: {pool: ['ada99']},\n };\n\nFix — remove the entry, or re-run the reconcile so the mirror follows\nthe type:\n ts-runtypes
|
|
232
|
+
detail: "The MockData map names a field the source type does not have (removed,\nrenamed, or a typo). Its pool/range can never feed a generated mock.\n\nExample — `nick` no longer exists on the type:\n interface User { name: string }\n export const mockUser: MockData<User> = {\n name: {pool: ['Ada', 'Linus']},\n- nick: {pool: ['ada99']},\n };\n\nFix — remove the entry, or re-run the reconcile so the mirror follows\nthe type:\n ts-runtypes enrich <source.ts> <Type> --update",
|
|
223
233
|
},
|
|
224
234
|
MD011: {
|
|
225
235
|
headline: 'Property `{0}` collides with the reserved `rt$` enrichment prefix — the type cannot be enriched.',
|
|
@@ -232,34 +242,39 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
232
242
|
detail: "The generator stamps a `@todo` line on every freshly-scaffolded const in\na MockData mirror file. It means \"this skeleton still carries generated\nblanks\". A clean, committed mirror has none.\n\nExample — a fresh scaffold:\n /** @rtType User#a1b2c3 @rtIds {name: d4e5f6} */\n- // @todo: generated skeleton — fill in real data, then delete this line\n export const mockUser: MockData<User> = {\n- name: {pool: []},\n+ name: {pool: ['Ada Lovelace', 'Linus Torvalds']},\n };\n\nFix — author realistic sample pools/ranges for the const, then delete\nthe whole `@todo` line (the compiler never removes it for you).",
|
|
233
243
|
},
|
|
234
244
|
MD021: {
|
|
235
|
-
headline: 'Stale `@rtOrphan` carcass — run `ts-runtypes
|
|
245
|
+
headline: 'Stale `@rtOrphan` carcass — run `ts-runtypes enrich --prune` to remove it (or restore the type).',
|
|
236
246
|
severity: 'error',
|
|
237
|
-
detail: 'The reconcile commented this MockData const out because its source type\nwas deleted or renamed. The carcass preserves your authored pools and\nranges so a reappearing type can restore them — but a clean, committed\nmirror has none.\n\nFix — if the type is really gone, prune the carcass:\n ts-runtypes
|
|
247
|
+
detail: 'The reconcile commented this MockData const out because its source type\nwas deleted or renamed. The carcass preserves your authored pools and\nranges so a reappearing type can restore them — but a clean, committed\nmirror has none.\n\nFix — if the type is really gone, prune the carcass:\n ts-runtypes enrich --prune\n\nFix — if the type was renamed, re-run the reconcile; a matching carcass\nis restored with your values intact:\n ts-runtypes enrich <source.ts> <NewName> --update',
|
|
238
248
|
},
|
|
239
249
|
MD022: {
|
|
240
|
-
headline: 'Stale `@rtOrphanChild` field carcass — run `ts-runtypes
|
|
250
|
+
headline: 'Stale `@rtOrphanChild` field carcass — run `ts-runtypes enrich --prune` to remove it (or restore the field).',
|
|
241
251
|
severity: 'error',
|
|
242
|
-
detail: "The reconcile commented this field out because the source type no longer\ndeclares it. The carcass preserves your authored value inline — but a\nclean, committed mirror has none.\n\nExample:\n export const mockUser: MockData<User> = {\n- /* @rtOrphanChild nick: {pool: ['ada99']}, */\n name: {pool: ['Ada', 'Linus']},\n };\n\nFix — if the field is really gone: `ts-runtypes
|
|
252
|
+
detail: "The reconcile commented this field out because the source type no longer\ndeclares it. The carcass preserves your authored value inline — but a\nclean, committed mirror has none.\n\nExample:\n export const mockUser: MockData<User> = {\n- /* @rtOrphanChild nick: {pool: ['ada99']}, */\n name: {pool: ['Ada', 'Linus']},\n };\n\nFix — if the field is really gone: `ts-runtypes enrich --prune`.\nFix — if the field was renamed, re-run `--update`; the authored value\nmoves to the renamed field when the ids match.",
|
|
253
|
+
},
|
|
254
|
+
MD023: {
|
|
255
|
+
headline: 'Unfilled blank value — a scaffolded sample pool or range is still empty; fill in real data.',
|
|
256
|
+
severity: 'error',
|
|
257
|
+
detail: "An empty pool (`pool: []`) is a generated blank that never got authored —\nit mocks nothing, so it is exactly as incomplete as a `@todo` marker.\nThis is why removing the `@todo` line without filling the values is not\n\"done\".\n\nExample:\n export const mockUser: MockData<User> = {\n- name: {pool: []},\n+ name: {pool: ['Ada Lovelace', 'Linus Torvalds']},\n };\n\nFix — author realistic sample data. Only the completeness gate\n(`ts-runtypes enrich --require-complete`) fails on it; a plain\n`--no-emit` health check reports it without failing.",
|
|
243
258
|
},
|
|
244
259
|
MKR001: {
|
|
245
260
|
headline: '`{0}()` is being called at runtime just so the marker can read its return type — side effects, throws, or async work run for nothing.',
|
|
246
261
|
severity: 'warning',
|
|
247
|
-
detail: 'Reflect-form markers (`
|
|
262
|
+
detail: 'Reflect-form markers (`createValidateFn(value)`, `getRunTypeId(value)`)\ninvoke their argument expression at runtime; the value is then discarded —\nonly its inferred type is used.\n\nFix — use the static form with `ReturnType<>`:\n - const isUser = createValidateFn({0}());\n+ const isUser = createValidateFn<ReturnType<typeof {0}>>();\n\nFix — pass an existing value of the desired type:\n const existingUser: User = ...;\n const isUser = getRunTypeId(existingUser);',
|
|
248
263
|
},
|
|
249
264
|
MKR003: {
|
|
250
265
|
headline: 'Marker call is inside a generic function — the type argument is unresolved, so no id can be computed at build time.',
|
|
251
266
|
severity: 'error',
|
|
252
|
-
detail: "The build can only compute an id for a concrete type (`User`,\n`{name: string}`, etc.). A type parameter like `T` is abstract — it\ntakes a different value at each call site of the surrounding function,\nso a single id can't represent it.\n\nFix — inline the marker at each concrete call site:\n function isUser(value: unknown) {\n return
|
|
267
|
+
detail: "The build can only compute an id for a concrete type (`User`,\n`{name: string}`, etc.). A type parameter like `T` is abstract — it\ntakes a different value at each call site of the surrounding function,\nso a single id can't represent it.\n\nFix — inline the marker at each concrete call site:\n function isUser(value: unknown) {\n return createValidateFn<User>()(value);\n }\n\nFix — accept a pre-computed id from the caller:\n function makeChecker<T>(id: InjectRunTypeId<T>) {\n return createValidateFn<T>(id);\n }\n const isUser = makeChecker<User>(getRunTypeId<User>());",
|
|
253
268
|
},
|
|
254
269
|
MKR004: {
|
|
255
270
|
headline: "`noLiterals: true` has no effect here — the type argument doesn't resolve to literal values.",
|
|
256
271
|
severity: 'warning',
|
|
257
|
-
detail: "The `noLiterals` validate option skips the exact-value check that literal\ntypes (`'admin'`, `42`, `true`) compile to. This call's type argument\nresolves to a non-literal type, so there is no literal check to skip and\nthe option is a silent no-op.\n\nFix — drop the option:\n- const isRole =
|
|
272
|
+
detail: "The `noLiterals` validate option skips the exact-value check that literal\ntypes (`'admin'`, `42`, `true`) compile to. This call's type argument\nresolves to a non-literal type, so there is no literal check to skip and\nthe option is a silent no-op.\n\nFix — drop the option:\n- const isRole = createValidateFn<string>({noLiterals: true});\n+ const isRole = createValidateFn<string>();\n\nOr, if you meant to relax a literal union, point the option at the type\nthat actually carries the literals:\n const isRole = createValidateFn<'admin' | 'user'>({noLiterals: true});",
|
|
258
273
|
},
|
|
259
274
|
MKR005: {
|
|
260
275
|
headline: '`noIsArrayCheck: true` has no effect here — the type argument is not an array type.',
|
|
261
276
|
severity: 'warning',
|
|
262
|
-
detail: "The `noIsArrayCheck` validate option skips the `Array.isArray` guard that\narray types compile to. This call's type argument resolves to a non-array\ntype, so there is no guard to skip and the option is a silent no-op.\n\nFix — drop the option:\n- const isUser =
|
|
277
|
+
detail: "The `noIsArrayCheck` validate option skips the `Array.isArray` guard that\narray types compile to. This call's type argument resolves to a non-array\ntype, so there is no guard to skip and the option is a silent no-op.\n\nFix — drop the option:\n- const isUser = createValidateFn<User>({noIsArrayCheck: true});\n+ const isUser = createValidateFn<User>();\n\nOr point it at the array type you meant:\n const isUsers = createValidateFn<User[]>({noIsArrayCheck: true});",
|
|
263
278
|
},
|
|
264
279
|
MKR006: {
|
|
265
280
|
headline: '`InjectTypeFnArgs` names the function family `{0}` more than once — remove the duplicate key.',
|
|
@@ -271,6 +286,26 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
271
286
|
severity: 'error',
|
|
272
287
|
detail: "TypeScript could not resolve the import, so the type it should have\nprovided checked as `any` at this marker call. A validator over `any` is\nthe always-true identity, a mock over `any` is `undefined`, and encoders\npass values through untouched — with no runtime signal that anything is\nwrong. This usually means the build tool and the type scanner resolve\nmodules differently (e.g. an extensionless relative import under\n`moduleResolution: NodeNext`, a missing dependency, or a `paths` alias the\nscan tsconfig doesn't declare).\n\nFix — make the import resolve for the type scanner:\n- import {User} from './user.runtype';\n+ import {User} from './user.runtype.ts';\n\nOr align the tsconfig the plugin scans with the one your bundler uses.\nIf the `any` is genuinely intentional, write the marker over an alias\ndeclared in resolving code (e.g. `type Loose = any`) in a file with no\nfailing imports.",
|
|
273
288
|
},
|
|
289
|
+
MKR008: {
|
|
290
|
+
headline: 'This type is too deeply nested to reflect — computing its structural id hit the recursion depth cap, so the build stops here instead of crashing.',
|
|
291
|
+
severity: 'error',
|
|
292
|
+
detail: 'The build computes a structural id by walking the type, and the walk is\ncapped at a depth far beyond any realistic shape. Hitting the cap with no\nsingle recurring type on the path means literally written (or generated)\nnesting hundreds of levels deep.\n\nFix — reflect a concrete, bounded projection of the type (e.g. the element\nor data type you actually send), or restructure the recursion so the same\nnamed type recurs by reference (a plain recursive interface is fine).',
|
|
293
|
+
},
|
|
294
|
+
MKR009: {
|
|
295
|
+
headline: 'Type `{0}` re-instantiates itself with fresh type arguments at every level (a self-instantiating generic), so its structural id never resolves. Reflect a monomorphic shape instead.',
|
|
296
|
+
severity: 'error',
|
|
297
|
+
detail: "A generic method's own type parameters (the `U` in `map<U>(fn: (x: T) => U):\nIter<U>`) are bound at each CALL of the method, so they can never be resolved\nwhile reflecting the containing type — and when such a method returns a fresh\ninstantiation of its own container, the type graph grows a new level forever.\nRenaming the type parameters does not resolve them; the fix is a monomorphic\n(fully resolved) recursive shape, which closes by reference:\n\n- interface Iter<T> { map<U>(fn: (x: T) => U): Iter<U> }\n+ interface NumberIter { map(fn: (x: string) => number): NumberIter }\n\nOrdinary generics are unaffected: instantiated types (Map<string, User>, a\nconcrete Iter<string>'s data members) and generic methods that do not\nre-instantiate their container reflect fine. Validators also drop methods\nentirely (methods aren't data), so reflecting just the data shape usually\nsidesteps the problem.",
|
|
298
|
+
},
|
|
299
|
+
MKR010: {
|
|
300
|
+
headline: 'Type argument contains the unresolved type parameter `{0}` — a generic must be fully resolved at the marker call, so no id can be computed. See Related for where `{0}` is declared.',
|
|
301
|
+
severity: 'error',
|
|
302
|
+
detail: "The build can only compute an id for a fully concrete type. `{0}` is a type\nparameter of the surrounding generic — it takes a different type at each call\nsite, so a single build-time id would alias every instantiation onto one\n(wrong) shape. A parameter DEFAULT does not help here: defaults resolve where\na caller omits the argument, never inside the generic's own body.\n\nFix — resolve the generic before reflecting it:\n interface Box<T> { value: T }\n type BoxString = Box<string>;\n const isBoxString = createValidateFn<BoxString>(); // resolved — ok\n\nFix — or accept a pre-computed id from the caller and inline the marker at\neach concrete call site (same patterns as MKR003):\n function makeChecker<T>(id: InjectRunTypeId<T>) {\n return createValidateFn<T>(id);\n }\n const isBox = makeChecker<Box<string>>(getRunTypeId<Box<string>>());\n\nGeneric METHODS on a concrete type (`find<T>(query: string): T[]`) are\nunaffected — their own type parameters are bound per call of the method and\nmethods aren't data.",
|
|
303
|
+
},
|
|
304
|
+
MKR011: {
|
|
305
|
+
headline: 'Generic type `{0}` is used without its required type argument(s) — parameter `{1}` has no default, so the type cannot resolve to an id. See Related for where `{1}` is declared.',
|
|
306
|
+
severity: 'error',
|
|
307
|
+
detail: "TypeScript itself rejects this usage (TS2314), but dev-server builds don't\nrun the type checker, so the scan reads the written type arguments and stops\nthe build here instead of silently reflecting `any` (a validator over `any`\naccepts everything).\n\nFix — pass the missing type argument:\n- const isA = createValidateFn<A>();\n+ const isA = createValidateFn<A<string>>();\n\nFix — or give the parameter a default, which the compiler resolves at every\nbare use site:\n- interface A<S extends string> { a: S }\n+ interface A<S extends string = string> { a: S }\n const isA = createValidateFn<A>(); // now resolves to A<string>",
|
|
308
|
+
},
|
|
274
309
|
NE001: {
|
|
275
310
|
headline: 'Property `{0}` is tagged @nonEnumerable but is required — the guard only applies to optional properties, so the tag has no effect. Make it optional (`{0}?`) or remove the tag.',
|
|
276
311
|
severity: 'error',
|
|
@@ -289,7 +324,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
289
324
|
OVR010: {
|
|
290
325
|
headline: 'Overriding `validate` for this type also changes how JSON and binary decoders narrow unions containing it.',
|
|
291
326
|
severity: 'warning',
|
|
292
|
-
detail: "`validate` is a shared dependency across function families: JSON and\nbinary union decoders call the member validators to pick the matching\nbranch. An `overrideValidate<T>()` therefore reaches past\n`
|
|
327
|
+
detail: "`validate` is a shared dependency across function families: JSON and\nbinary union decoders call the member validators to pick the matching\nbranch. An `overrideValidate<T>()` therefore reaches past\n`createValidateFn<T>()` — decoders of any union containing T now narrow\nwith YOUR function.\n\nThis is informational; the build proceeds. If the override should only\naffect direct validation, give the union members a discriminant so\ndecoders never fall back to member validation:\n type Event = {kind: 'click'; x: number} | {kind: 'key'; code: string};",
|
|
293
328
|
},
|
|
294
329
|
PFE9004: {
|
|
295
330
|
headline: 'Duplicate `registerPureFnFactory` for `{0}` with a different body — only one definition can win.',
|
|
@@ -689,7 +724,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
689
724
|
VE020: {
|
|
690
725
|
headline: '`validationErrors` on `any` / `unknown` always returns an empty error array — nothing is checked.',
|
|
691
726
|
severity: 'warning',
|
|
692
|
-
detail: 'Same reason as VL021: `any` and `unknown` describe "anything", so the\nchecker has no structure to compare against. The returned error array\nwill always be empty.\n\nFix — narrow the type to the actual shape you expect:\n - const errors =
|
|
727
|
+
detail: 'Same reason as VL021: `any` and `unknown` describe "anything", so the\nchecker has no structure to compare against. The returned error array\nwill always be empty.\n\nFix — narrow the type to the actual shape you expect:\n - const errors = createGetValidationErrorsFn<unknown>()(value);\n+ const errors = createGetValidationErrorsFn<User>()(value);',
|
|
693
728
|
},
|
|
694
729
|
VL001: {
|
|
695
730
|
headline: 'Type `{0}` can never be validated — the generated function will always fail.',
|
|
@@ -734,7 +769,7 @@ export const DIAGNOSTIC_CATALOG = {
|
|
|
734
769
|
VL021: {
|
|
735
770
|
headline: '`validate` on `any` / `unknown` always returns true — the validator accepts every value.',
|
|
736
771
|
severity: 'warning',
|
|
737
|
-
detail: '`any` and `unknown` describe "anything", so a structural validator has\nnothing to check. The resulting function passes for every input —\nincluding the ones you probably wanted to reject.\n\nFix — narrow the type to the actual shape you expect:\n - const isUser =
|
|
772
|
+
detail: '`any` and `unknown` describe "anything", so a structural validator has\nnothing to check. The resulting function passes for every input —\nincluding the ones you probably wanted to reject.\n\nFix — narrow the type to the actual shape you expect:\n - const isUser = createValidateFn<unknown>();\n+ const isUser = createValidateFn<User>();',
|
|
738
773
|
},
|
|
739
774
|
};
|
|
740
775
|
//# sourceMappingURL=diagnosticCatalog.generated.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"diagnosticCatalog.generated.js","sourceRoot":"","sources":["../../src/go-generated/diagnosticCatalog.generated.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"diagnosticCatalog.generated.js","sourceRoot":"","sources":["../../src/go-generated/diagnosticCatalog.generated.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const TSCONFIG_PLUGIN_KEYS: readonly ["allowUncheckedPatterns", "emitMode", "failOnError", "genDir", "hashLength", "i18n", "inlineMode", "moduleMode", "name", "parallelRender", "parallelScan", "pureFnReport", "singleThreaded", "size", "validate"];
|
|
2
|
+
export type TsconfigPluginKey = (typeof TSCONFIG_PLUGIN_KEYS)[number];
|
|
3
|
+
//# sourceMappingURL=tsconfig-plugin-keys.generated.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tsconfig-plugin-keys.generated.d.ts","sourceRoot":"","sources":["../../src/go-generated/tsconfig-plugin-keys.generated.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,oBAAoB,4NAgBvB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export const TSCONFIG_PLUGIN_KEYS = [
|
|
2
|
+
'allowUncheckedPatterns',
|
|
3
|
+
'emitMode',
|
|
4
|
+
'failOnError',
|
|
5
|
+
'genDir',
|
|
6
|
+
'hashLength',
|
|
7
|
+
'i18n',
|
|
8
|
+
'inlineMode',
|
|
9
|
+
'moduleMode',
|
|
10
|
+
'name',
|
|
11
|
+
'parallelRender',
|
|
12
|
+
'parallelScan',
|
|
13
|
+
'pureFnReport',
|
|
14
|
+
'singleThreaded',
|
|
15
|
+
'size',
|
|
16
|
+
'validate',
|
|
17
|
+
];
|
|
18
|
+
//# sourceMappingURL=tsconfig-plugin-keys.generated.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tsconfig-plugin-keys.generated.js","sourceRoot":"","sources":["../../src/go-generated/tsconfig-plugin-keys.generated.ts"],"names":[],"mappings":"AAQA,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,wBAAwB;IACxB,UAAU;IACV,aAAa;IACb,QAAQ;IACR,YAAY;IACZ,MAAM;IACN,YAAY;IACZ,YAAY;IACZ,MAAM;IACN,gBAAgB;IAChB,cAAc;IACd,cAAc;IACd,gBAAgB;IAChB,MAAM;IACN,UAAU;CACF,CAAC"}
|