@suin/biome.json
Version:
Opinionated Biome configuration extending ultracite with additional rules
39 lines • 829 B
JSON
{
"root": false,
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
"linter": {
"rules": {
"nursery": {
"useQwikValidLexicalScope": "warn",
"useQwikMethodUsage": "warn"
},
"suspicious": {
"noReactSpecificProps": "warn"
},
"correctness": {
"noQwikUseVisibleTask": "warn",
"useQwikClasslist": "warn",
"noUndeclaredVariables": "off"
},
"complexity": {
"useLiteralKeys": "off"
},
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"useConsistentArrayType": {
"level": "warn",
"options": {
"syntax": "generic"
}
}
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}