konoplayer/biome.jsonc
2025-03-21 23:45:12 +08:00

64 lines
1.5 KiB
Plaintext

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"extends": [
"ultracite"
],
"linter": {
"rules": {
"style": {
"noParameterProperties": "off",
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"a11y": {
"noSvgWithoutTitle": "off"
},
"complexity": {
"noBannedTypes": "off"
},
"nursery": {
"noEnum": "off",
"useConsistentMemberAccessibility": "off"
}
}
},
"files": {
"ignore": [
".vscode/*.json"
]
},
"overrides": [
{
"include": [
"apps/playground/**"
],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
},
"performance": {
"useTopLevelRegex": "off"
}
}
}
},
{
"include": [
"scripts/**"
],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
},
"performance": {
"useTopLevelRegex": "off"
}
}
}
}
]
}