konoplayer/biome.jsonc
2025-03-18 06:21:27 +08:00

55 lines
1.3 KiB
Plaintext

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"extends": [
"ultracite"
],
"javascript": {
"globals": [
"Liveblocks"
]
},
"linter": {
"rules": {
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"a11y": {
"noSvgWithoutTitle": "off"
},
"complexity": {
"noBannedTypes": "off"
}
}
},
"files": {
"ignore": [
"packages/design-system/components/ui/**",
"packages/design-system/lib/**",
"packages/design-system/hooks/**",
"packages/collaboration/config.ts",
"apps/docs/**/*.json",
"apps/email/.react-email/**",
".vscode/*.json"
]
},
"overrides": [
{
"include": [
"apps/playground/**"
],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
},
"performance": {
"useTopLevelRegex": "off"
}
}
}
}
]
}