lume/biome.json

29 lines
513 B
JSON
Raw Permalink Normal View History

2023-12-25 14:28:39 +07:00
{
2024-08-12 10:32:20 +07:00
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
2024-11-03 13:49:19 +07:00
"ignore": ["./src/routes.gen.ts", "./src/commands.gen.ts"]
2024-08-12 10:32:20 +07:00
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "warn",
"noUselessElse": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"a11y": {
"noSvgWithoutTitle": "off"
},
"complexity": {
"noStaticOnlyClass": "off"
}
}
}
2023-12-25 14:28:39 +07:00
}