36 lines
649 B
JSON
36 lines
649 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/.next",
|
|
"!**/dist",
|
|
"!**/node_modules",
|
|
"!**/.turbo",
|
|
"!**/coverage",
|
|
"!**/playwright-report",
|
|
"!**/test-results",
|
|
"!**/next-env.d.ts"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 100
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"semicolons": "asNeeded",
|
|
"trailingCommas": "all"
|
|
}
|
|
}
|
|
}
|