prmbr-image-mksaas/biome.json
2025-03-09 20:01:07 +08:00

66 lines
1.3 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": true,
"ignore": [
".next/**",
".content-collections/**",
"node_modules/**",
"dist/**",
"build/**",
"src/components/ui/*.tsx",
"src/components/magicui/*.tsx",
"tailwind.config.ts"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"formatWithErrors": true
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noSparseArray": "off"
},
"style": {
"useTemplate": "off",
"noNonNullAssertion": "off",
"useShorthandArrayType": "off"
},
"a11y": {
"useValidAnchor": "off"
}
},
"ignore": [
".next/**",
".content-collections/**",
"node_modules/**",
"dist/**",
"build/**",
"src/components/ui/*.tsx",
"src/components/magicui/*.tsx",
"tailwind.config.ts"
]
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "es5",
"semicolons": "always"
}
}
}