gerbil/biome.json

42 lines
813 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"formatter": {
"indentStyle": "space",
"lineWidth": 100
},
"linter": {
"rules": {
"recommended": true,
"suspicious": {
"noArrayIndexKey": "off"
},
"a11y": {
"noSvgWithoutTitle": "off",
"useAltText": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "es5"
}
},
"overrides": [
{
"includes": ["*.config.*", "vite.config.*", "scripts/**"],
"linter": {
"enabled": false
}
}
]
}