rallly/biome.json
2025-06-03 09:24:33 +01:00

58 lines
1.2 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noUselessElse": "off"
},
"correctness": {
"noUnusedImports": {
"level": "error",
"fix": "unsafe"
}
},
"nursery": {
"useSortedClasses": {
"options": {
"functions": ["cn", "clsx", "cva", "tw"]
},
"level": "error",
"fix": "safe"
}
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"trailingCommas": "all",
"semicolons": "always",
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignore": ["apps/landing/public/static/scripts/mailerlite.js"]
}
}