Files
lixiyu-net/biome.json

40 lines
819 B
JSON
Raw Normal View History

{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"ignore": [".next", "VSCodeCounter", ".turbo", "node_modules"]
},
"formatter": {
"indentStyle": "space",
"lineWidth": 120
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"a11y": {
"useKeyWithClickEvents": "off"
},
"complexity": {
"noForEach": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noParameterAssign": "off",
"noNonNullAssertion": "off",
"useNodejsImportProtocol": "off"
},
"nursery": {
"useSortedClasses": "error"
},
"recommended": true
}
}
}