dev-booster 1.16.10 → 1.16.11
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/package.json
CHANGED
|
@@ -40,6 +40,8 @@ Purpose:
|
|
|
40
40
|
|
|
41
41
|
Stage 1 is the only stage authorized automatically on activation.
|
|
42
42
|
Stage 1 ends only when setup is healthy enough for a trustworthy audit pass.
|
|
43
|
+
A setup is NOT healthy if abusive masking, broad suppressions, or lazy bypasses still remain in the project.
|
|
44
|
+
|
|
43
45
|
At the end of Stage 1, the booster MUST:
|
|
44
46
|
- update the artifact
|
|
45
47
|
- summarize briefly in chat
|
|
@@ -209,6 +211,7 @@ Search for:
|
|
|
209
211
|
- `eslint-disable-line`
|
|
210
212
|
- `@ts-ignore`
|
|
211
213
|
- `@ts-expect-error`
|
|
214
|
+
- `@ts-nocheck`
|
|
212
215
|
|
|
213
216
|
Flag especially:
|
|
214
217
|
- file-wide disables
|
|
@@ -216,7 +219,8 @@ Flag especially:
|
|
|
216
219
|
- suppressions around hook dependency rules
|
|
217
220
|
- suppressions with no explanation
|
|
218
221
|
|
|
219
|
-
If a suppression is clearly abusive, stale, or only there to lazily silence the tool, remove it during
|
|
222
|
+
If a suppression is clearly abusive, stale, or only there to lazily silence the tool, remove it during Stage 1 instead of merely reporting it.
|
|
223
|
+
If abusive suppressions appear across many files, remove them across all affected files before declaring Stage 1 healthy.
|
|
220
224
|
|
|
221
225
|
### Step D — Stabilize typecheck
|
|
222
226
|
Inspect when relevant:
|
|
@@ -276,8 +280,10 @@ Without extra confirmation, you may:
|
|
|
276
280
|
- remove abusive global bypass flags
|
|
277
281
|
- remove clearly unjustified global rule disables or broad masking overrides
|
|
278
282
|
- remove clearly unjustified inline disables when safe
|
|
283
|
+
- remove abusive `@ts-nocheck`, `@ts-ignore`, `eslint-disable`, or equivalent masking patterns wherever they are found
|
|
279
284
|
|
|
280
285
|
Only normalize what is necessary to make lint and typecheck truthful in the real project scope.
|
|
286
|
+
For abusive masking, do not be conservative: remove it.
|
|
281
287
|
|
|
282
288
|
### Ask before
|
|
283
289
|
Ask before:
|
|
@@ -304,6 +310,8 @@ In Stage 1, edits must stay limited to setup-enabling work.
|
|
|
304
310
|
Do not drift into general code audit or broad product-code cleanup before the Stage 2 checkpoint.
|
|
305
311
|
|
|
306
312
|
Round 1 must NOT be reported as complete until this setup-only normalization pass has happened.
|
|
313
|
+
Stage 1 must NOT be declared healthy while abusive masking still exists anywhere in the project.
|
|
314
|
+
If abusive masking is found in 1 file or 1,000 files, remove it before moving on.
|
|
307
315
|
|
|
308
316
|
When setup is complete:
|
|
309
317
|
- generate/update the artifact
|
|
@@ -436,6 +444,7 @@ All deeper detail must go into the artifact.
|
|
|
436
444
|
- Do not claim lint or typecheck is healthy unless terminal execution was actually verified in the correct runtime, package manager, and scope.
|
|
437
445
|
- Do not silently preserve abusive bypasses just because a command passes.
|
|
438
446
|
- Do not present Round 1 findings on top of masking that should already have been removed.
|
|
447
|
+
- Do not declare Stage 1 healthy while abusive masking still exists in the project.
|
|
439
448
|
- Do not auto-fix Lot 2 without strong local justification.
|
|
440
449
|
- Do not turn this booster into a whole-project refactor.
|
|
441
450
|
- Do not invent auxiliary work just because a scenario pattern exists; stay focused on lint and typecheck.
|
|
@@ -477,6 +486,7 @@ It must preserve:
|
|
|
477
486
|
- what was intentionally left untouched
|
|
478
487
|
- what still needs review
|
|
479
488
|
- what remains pending for the user
|
|
489
|
+
- which abusive masking patterns were removed during Stage 1
|
|
480
490
|
|
|
481
491
|
The artifact, not the chat, is the detailed memory of the audit.
|
|
482
492
|
If something breaks later, this file must explain what was done and why.
|