mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-29 12:29:31 +00:00
Move shared biome.json from lint/ to repo root so it's the single root config. Nested configs (packages/cli, .claude/skills/setup-spa) get `"root": false` via `biome migrate`. This fixes lint failing when run from the repo root. Co-authored-by: lab <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
820 B
JSON
34 lines
820 B
JSON
{
|
|
"root": false,
|
|
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
|
|
"extends": ["../../biome.json"],
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true,
|
|
"defaultBranch": "main"
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": ["src/**/*.ts"]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["src/__tests__/**"],
|
|
"linter": {
|
|
"rules": {
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noImplicitAnyLet": "off",
|
|
"noAssignInExpressions": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noUnusedFunctionParameters": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"plugins": ["../../lint/no-type-assertion.grit", "../../lint/no-typeof-string-number.grit"]
|
|
}
|