52 lines
969 B
JSON
52 lines
969 B
JSON
|
|
{
|
||
|
|
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
|
||
|
|
"vcs": {
|
||
|
|
"enabled": true,
|
||
|
|
"clientKind": "git",
|
||
|
|
"useIgnoreFile": true
|
||
|
|
},
|
||
|
|
"files": {
|
||
|
|
"ignoreUnknown": false,
|
||
|
|
"includes": [
|
||
|
|
"src/**",
|
||
|
|
"config/**",
|
||
|
|
"*.ts",
|
||
|
|
"*.js",
|
||
|
|
"*.vue",
|
||
|
|
"components.d.ts"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"formatter": {
|
||
|
|
"enabled": true,
|
||
|
|
"indentStyle": "space",
|
||
|
|
"indentWidth": 2,
|
||
|
|
"lineWidth": 80
|
||
|
|
},
|
||
|
|
"javascript": {
|
||
|
|
"formatter": {
|
||
|
|
"quoteStyle": "single",
|
||
|
|
"semicolons": "always",
|
||
|
|
"quoteProperties": "asNeeded"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"linter": {
|
||
|
|
"enabled": true,
|
||
|
|
"rules": {
|
||
|
|
"preset": "recommended",
|
||
|
|
"correctness": {
|
||
|
|
"noUnusedVariables": "warn",
|
||
|
|
"useExhaustiveDependencies": "off"
|
||
|
|
},
|
||
|
|
"style": {
|
||
|
|
"noNonNullAssertion": "off"
|
||
|
|
},
|
||
|
|
"suspicious": {
|
||
|
|
"noExplicitAny": "off"
|
||
|
|
},
|
||
|
|
"a11y": {
|
||
|
|
"noSvgWithoutTitle": "off"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|