50 lines
919 B
JSON
50 lines
919 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.1/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"ignore": [".env", ".env.*", ".yarn/**/*", "*.*css"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space"
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["*.svelte", "*.md"],
|
|
"linter": {
|
|
"rules": {
|
|
"correctness": {
|
|
"noUnusedLabels": "off"
|
|
},
|
|
"suspicious": {
|
|
"noConfusingLabels": "off"
|
|
},
|
|
"style": {
|
|
"useConst": "off",
|
|
"useImportType": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|