sendou.ink/biome.json
2024-07-06 13:40:16 +03:00

54 lines
922 B
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"ignore": [
"./scripts/dicts/**/*",
"./scripts/output/**/*",
"./app/db/seed/placements.json",
"./build/**/*"
]
},
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off",
"noConsoleLog": "error"
},
"style": {
"noNonNullAssertion": "off",
"noUnusedTemplateLiteral": {
"fix": "safe",
"level": "error"
},
"useNodejsImportProtocol": {
"fix": "safe",
"level": "error"
},
"useTemplate": {
"fix": "safe",
"level": "error"
}
},
"a11y": {
"useKeyWithClickEvents": "off",
"noSvgWithoutTitle": "off"
},
"complexity": {
"useLiteralKeys": {
"fix": "safe",
"level": "error"
}
}
}
},
"css": {
"formatter": {
"enabled": true
},
"linter": {
"enabled": true
}
}
}