41 lines
943 B
JSON
41 lines
943 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignore": ["**/dist/**", ".github/**"],
|
|
"include": ["**/**", "server/**"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 4,
|
|
"lineWidth": 100,
|
|
"ignore": ["pnpm-lock.yaml", "package.json"]
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": false
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"trailingCommas": "none",
|
|
"quoteStyle": "double",
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
"json": {
|
|
"parser": {
|
|
"allowComments": true,
|
|
"allowTrailingCommas": true
|
|
},
|
|
"formatter": {
|
|
"trailingCommas": "none"
|
|
}
|
|
}
|
|
}
|