Files
Reactive-Resume/biome.json
T
2026-02-09 01:50:31 +01:00

70 lines
1.2 KiB
JSON

{
"$schema": "node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignoreUnknown": true,
"includes": [
"**",
"!**/docs/spec.json",
"!**/webfontlist.json",
"!**/schema/schema.json",
"!**/src/routeTree.gen.ts"
]
},
"formatter": {
"lineWidth": 120,
"indentStyle": "tab"
},
"assist": {
"actions": {
"recommended": true,
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"rules": {
"a11y": "off",
"recommended": true,
"suspicious": {
"noArrayIndexKey": "off"
},
"correctness": {
"noUnknownTypeSelector": "off",
"useExhaustiveDependencies": "off",
"noUnusedImports": {
"fix": "safe",
"level": "error",
"options": {}
}
},
"nursery": {
"useSortedClasses": {
"fix": "safe",
"level": "warn",
"options": {
"functions": ["cn", "cva"],
"attributes": ["class", "className"]
}
}
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}