mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-14 03:19:49 +00:00
35 lines
690 B
JSON
35 lines
690 B
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"files": {
|
|
"ignore": ["node_modules/**", ".next/**", "drizzle/**"]
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|