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
Caught during the eval.ts retirement PR: this repo has no formatter
config, so running biome with defaults reformats files spaces→tabs.
The eval-retire PR had to revert biome's default reformat to avoid
shipping a 700-line stylistic blast.
Adding a biome.json that matches the existing 2-space / double-quote
/ semicolon / trailing-comma convention, plus a one-shot
`biome format --write` of the codebase so future biome runs are
no-ops. Linter is disabled in the config (recommended ruleset finds
~63 errors in existing code — that's a separate cleanup decision).
After this PR:
- `npx @biomejs/biome format .` returns "No fixes applied"
- `npm run build` clean, all 115 tests still pass
- Any contributor running biome will get the same style without
reformat conflicts
Style choices locked in:
- indent: 2 spaces (matches all existing files)
- line width: 80
- quotes: double, semicolons: always
- trailing commas: all
- arrow parens: always
0 commit comments