mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-18 21:20:55 -05:00
* Initial * Progress * Fix * Progress * Notifications list page * BADGE_MANAGER_ADDED * Mark as seen initial * Split tables * Progress * Fix styles * Push notifs initial * Progress * Rename * Routines * Progress * Add e2e tests * Done? * Try updating actions * Consistency * Dep fix * A couple fixes
57 lines
967 B
JSON
57 lines
967 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",
|
|
"noLabelWithoutControl": "off"
|
|
},
|
|
"complexity": {
|
|
"useLiteralKeys": {
|
|
"fix": "safe",
|
|
"level": "error"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"css": {
|
|
"formatter": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true
|
|
},
|
|
"parser": {
|
|
"cssModules": true
|
|
}
|
|
}
|
|
}
|