Files
2025-07-17 20:04:45 +01:00

64 lines
1.2 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": [
".next"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"bracketSpacing": true,
"indentWidth": 2
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error",
"useExhaustiveDependencies": "warn"
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "warn"
},
"style": {
"useTemplate": "warn"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"overrides": [
{
"include": ["client/**"],
"linter": {
"rules": {
"style": {
"noUselessElse": "off",
"noParameterAssign": "off",
"noNonNullAssertion": "off"
},
"complexity": {
"noUselessSwitchCase": "off",
"noForEach": "off"
}
}
}
}
]
}