Files
cfw-autumn/vite/biome.json

46 lines
744 B
JSON

{
"root": false,
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"experimentalScannerIgnores": ["dist/**", "public/**"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"enabled": true,
"rules": {
"correctness": {
"useExhaustiveDependencies": "off"
},
"recommended": true,
"complexity": {
"noStaticOnlyClass": "off"
},
"suspicious": {
"noArrayIndexKey": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}