BangSo/biome.json

65 lines
1.2 KiB
JSON
Raw Normal View History

2026-09-01 16:51:19 +00:00
{
"$schema": "https://biomejs.dev/schemas/2.5.8/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": [
"**",
"!**/node_modules",
"!**/dist",
"!**/build",
"!**/coverage",
"!**/design",
"!**/packages/db/src/generated",
"!**/apps/mobile/.expo",
"!**/playwright-report",
"!**/test-results",
"!**/test-report",
"!**/verify-report",
"!**/data",
"!**/*.astro",
"!**/apps/www"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"preset": "recommended",
"style": {
"noNonNullAssertion": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off"
},
"a11y": {
"noSvgWithoutTitle": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "all"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}