Files
archived-x-prober/biome.jsonc
T
Km.Van e8305e2784 use Zustand instead of MobX
change xconfig.json to xconfig.toml
2026-07-09 22:40:43 +08:00

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"
}
}
}
}
}
}