@suin/biome.json
Version:
Opinionated Biome configuration extending ultracite with additional rules
35 lines • 641 B
JSON
{
"root": false,
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
"html": {
"parser": {
"interpolation": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"linter": {
"rules": {
"complexity": {
"useLiteralKeys": "off"
},
"correctness": {
"noUndeclaredVariables": "off"
},
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"useConsistentArrayType": {
"level": "warn",
"options": {
"syntax": "generic"
}
}
}
}
}
}