Files
create-better-t-stack/biome.json
2025-06-10 15:34:15 +05:30

57 lines
931 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": [
".next",
"dist",
".source",
"out",
"template",
"templates",
".turbo",
"package.json",
"analytics-data.json"
]
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"ignore": ["**/templates"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"nursery": {
"useSortedClasses": {
"level": "warn",
"fix": "safe",
"options": {
"functions": ["clsx", "cva", "cn"]
}
}
},
"correctness": {
"noUnusedImports": "error",
"noUnusedLabels": "error",
"noUnusedVariables": "error"
}
},
"ignore": ["template"]
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}