@suin/biome.json
Version:
Opinionated Biome configuration extending ultracite with additional rules
58 lines • 1.13 kB
JSON
{
"root": false,
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
"html": {
"experimentalFullSupportEnabled": true,
"formatter": {
"indentScriptAndStyle": true
}
},
"overrides": [
{
"includes": [
"**/*.svelte"
],
"linter": {
"rules": {
"correctness": {
"noUnusedVariables": "off",
"noUnusedImports": "off"
},
"style": {
"useConst": "off",
"useImportType": "off"
},
"suspicious": {
"noReactSpecificProps": "warn"
}
}
}
}
],
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"linter": {
"rules": {
"complexity": {
"useLiteralKeys": "off"
},
"correctness": {
"noUndeclaredVariables": "off"
},
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"useConsistentArrayType": {
"level": "warn",
"options": {
"syntax": "generic"
}
}
}
}
}
}