2024-04-28 23:57:52 -06:00
|
|
|
{
|
2024-07-15 01:02:18 +02:00
|
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
|
|
|
"files": {
|
2024-07-29 23:08:23 -06:00
|
|
|
"ignore": ["node_modules/**", ".next/**", "drizzle/**", ".docker", "dist"]
|
2024-07-15 01:02:18 +02:00
|
|
|
},
|
|
|
|
|
"organizeImports": {
|
|
|
|
|
"enabled": true
|
|
|
|
|
},
|
|
|
|
|
"linter": {
|
|
|
|
|
"rules": {
|
|
|
|
|
"complexity": {
|
|
|
|
|
"noUselessCatch": "off",
|
|
|
|
|
"noBannedTypes": "off"
|
|
|
|
|
},
|
|
|
|
|
"correctness": {
|
|
|
|
|
"useExhaustiveDependencies": "off",
|
|
|
|
|
"noUnsafeOptionalChaining": "off"
|
|
|
|
|
},
|
|
|
|
|
"style": {
|
|
|
|
|
"noNonNullAssertion": "off"
|
|
|
|
|
},
|
|
|
|
|
"suspicious": {
|
|
|
|
|
"noArrayIndexKey": "off",
|
|
|
|
|
"noExplicitAny": "off",
|
|
|
|
|
"noRedeclare": "off"
|
|
|
|
|
},
|
|
|
|
|
"a11y": {
|
|
|
|
|
"noSvgWithoutTitle": "off",
|
|
|
|
|
"useKeyWithClickEvents": "off",
|
|
|
|
|
"useAriaPropsForRole": "off"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|