Files
beavergram/frontend/biome.jsonc
T
2026-05-28 21:59:44 +02:00

58 lines
1.1 KiB
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite/biome/core", "ultracite/biome/svelte"],
"javascript": {
"globals": ["Bun"]
},
"css": {
"parser": {
"cssModules": true
}
},
"linter": {
"rules": {
"performance": {
"noNamespaceImport": "off"
},
"correctness": {
"noUnknownPseudoElement": "off"
}
}
},
"overrides": [
{
"includes": ["**/*.svelte"],
"linter": {
"rules": {
"correctness": {
"noUndeclaredVariables": "off",
"noUnusedVariables": "off"
},
"style": {
"useFilenamingConvention": "off"
},
"a11y": {
"noSvgWithoutTitle": "warn",
"useButtonType": "warn"
}
}
}
},
{
"includes": ["src/app.d.ts"],
"linter": {
"rules": {
"style": {
"noNamespace": "off"
}
}
}
},
{
"includes": ["src/app.html"],
"linter": { "enabled": false },
"formatter": { "enabled": false }
}
]
}