mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
47 lines
798 B
JSON
47 lines
798 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"files": {
|
|
"ignore": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"coverage",
|
|
"*.log",
|
|
".turbo",
|
|
"**/.turbo",
|
|
".next",
|
|
"**/.next",
|
|
"apps/*/.next",
|
|
"apps/*/.source"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 80
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": false
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"jsxQuoteStyle": "double",
|
|
"trailingCommas": "es5",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
}
|
|
}
|
|
}
|