mirror of
https://github.com/kmvan/x-prober.git
synced 2026-08-12 23:31:41 +08:00
e8305e2784
change xconfig.json to xconfig.toml
44 lines
948 B
JSON
44 lines
948 B
JSON
{
|
|
"extends": [
|
|
"ultracite/biome/core",
|
|
"ultracite/biome/react",
|
|
"ultracite/biome/remix",
|
|
"ultracite/biome/vitest"
|
|
],
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"linter": {
|
|
"rules": {
|
|
"a11y": {
|
|
"useKeyWithClickEvents": "warn"
|
|
},
|
|
"complexity": {
|
|
"noExcessiveCognitiveComplexity": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noAlert": "warn",
|
|
"noConsole": "warn"
|
|
},
|
|
"performance": {
|
|
"noAwaitInLoops": "off"
|
|
},
|
|
"security": {
|
|
"noDangerouslySetInnerHtml": "off"
|
|
},
|
|
"style": {
|
|
"useNamingConvention": "warn",
|
|
"noMagicNumbers": "warn",
|
|
"useConsistentTypeDefinitions": {
|
|
"level": "warn",
|
|
"options": {
|
|
"style": "type"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |