68 lines
1.3 KiB
JSON
68 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": true,
|
|
"includes": ["**", "!!node_modules", "!!bun.lock"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"jsxQuoteStyle": "double",
|
|
"semicolons": "asNeeded",
|
|
"trailingCommas": "none",
|
|
"operatorLinebreak": "after",
|
|
"attributePosition": "multiline"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
},
|
|
"html": {
|
|
"experimentalFullSupportEnabled": true,
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentScriptAndStyle": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"useConst": "off",
|
|
"useImportType": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "off",
|
|
"noUnusedImports": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|