murashit_codex-panel/biome.jsonc
2026-06-24 14:54:53 +09:00

59 lines
1.1 KiB
Text

{
"$schema": "https://biomejs.dev/schemas/2.5.1/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": [
"*.config.mjs",
"*.config.ts",
"*.css",
"*.json",
"*.mjs",
"scripts/**/*.mjs",
"src/**/*.{css,ts,tsx}",
"tests/**/*.{ts,tsx}",
"!src/generated"
]
},
"formatter": {
"indentStyle": "space",
"lineWidth": 140
},
"assist": {
"actions": {
"source": {
"noDuplicateClasses": "on",
"organizeImports": "on"
}
}
},
"linter": {
"rules": {
"preset": "recommended",
"a11y": "info",
"correctness": {
"useExhaustiveDependencies": {
"level": "error",
"options": {
"reportUnnecessaryDependencies": false
}
},
"useHookAtTopLevel": "error"
},
"nursery": {
"noFloatingPromises": "error"
},
"suspicious": {
"noImportCycles": "error"
}
}
},
"css": {
"linter": {
"enabled": false
}
}
}