You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mechanical, behavior-preserving fixes from `biome check --write` (safe only):
- noUselessEscapeInRegex: drop redundant escapes inside character classes
(`\.`→`.`, `\[`→`[`, `\|`→`|`; `\]` correctly kept) in catalog.ts, the
wikisource importer, and product-reader.jsx — identical matching.
- useConst (turnkey btc `change`), noUselessContinue (liber-core extract loop —
the continue was the last stmt in the iteration; added a comment so the now-
empty branch reads as intentional).
- Dropped a stale `@ts-ignore` on the product-data import (Biome rewrote it to
`@ts-expect-error`, which tsc then flagged as unused — the import type-checks
fine, so the directive is gone).
`npm test` green (176 + 10 + 73). Remaining ~713 lint errors are JSX a11y +
correctness that need human judgment (next: triage + ratchet to blocking).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 commit comments