A checking lint reports what a writing one silently reformatted: after any test run, `playwright/.auth/user.json` and `test-results/.last-run.json` are written by Playwright and failed `make lint`. Both are gitignored, and `playwright-report` was already excluded beside them. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Uq8mtNb97A7praJLyeEYgs
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/dist/**/*",
|
|
"!**/node_modules/**/*",
|
|
"!**/src/routeTree.gen.ts",
|
|
"!**/src/client/**/*",
|
|
"!**/src/components/ui/**/*",
|
|
"!**/playwright-report",
|
|
"!**/playwright/.auth",
|
|
"!**/test-results",
|
|
"!**/playwright.config.ts"
|
|
]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noArrayIndexKey": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"noParameterAssign": "error",
|
|
"useSelfClosingElements": "error",
|
|
"noUselessElse": "error"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space"
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
}
|
|
}
|
|
}
|