38 lines
682 B
JSON
38 lines
682 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
|
|
"vcs": {
|
|
"enabled": false,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": false
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": true,
|
|
"includes": [
|
|
"**/src/**/*",
|
|
"**/.vscode/**/*",
|
|
"**/index.html",
|
|
"**/vite.config.js",
|
|
"!**/src/routeTree.gen.ts",
|
|
"!**/node_modules/**/*"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"trailingCommas": "none",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
}
|
|
}
|