@suin/biome.json
Version:
Opinionated Biome configuration extending ultracite with additional rules
45 lines • 843 B
JSON
{
"root": false,
"$schema": "../node_modules/@biomejs/biome/configuration_schema.json",
"overrides": [
{
"includes": [
"**/routes/**/*.{tsx,ts}",
"**/app/routes/**/*.{tsx,ts}"
],
"linter": {
"rules": {
"style": {
"useFilenamingConvention": "off"
}
}
}
}
],
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"linter": {
"rules": {
"complexity": {
"useLiteralKeys": "off"
},
"correctness": {
"noUndeclaredVariables": "off"
},
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"useConsistentArrayType": {
"level": "warn",
"options": {
"syntax": "generic"
}
}
}
}
}
}