Files
zpan/biome.json
T
saltbo 941e642af8 fix: commit routeTree.gen.ts for CI typecheck
TanStack Router generates this file via Vite plugin. CI needs it
for typecheck since there's no standalone generate command.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 10:21:03 -04:00

50 lines
1003 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": ["packages/**/*.ts", "packages/**/*.tsx", "e2e/**/*.ts", "!packages/web/src/routeTree.gen.ts"],
"ignoreUnknown": true
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error",
"noUnusedVariables": "warn"
},
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noDocumentCookie": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all",
"semicolons": "asNeeded"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}