Files
Ethan Roseman 4ef64cbebc Run Biome formatter (#1392)
* Run formatter

* Part 2
2024-12-11 01:03:56 +09:00

53 lines
1.4 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": [".next", "cache", "node_modules"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 4
},
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noUselessElse": "off",
"noParameterAssign": "off"
},
"a11y": {
"useValidAnchor": "off",
"useSemanticElements": "off",
"noLabelWithoutControl": "off",
"useButtonType": "off",
"useKeyWithClickEvents": "off",
"noNoninteractiveTabindex": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off",
"noConfusingVoidType": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"performance": {
"noDelete": "off"
},
"nursery": {
"useSortedClasses": "error"
}
}
}
}