mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
66 lines
1.3 KiB
JSON
66 lines
1.3 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
||
|
|
"vcs": {
|
||
|
|
"enabled": false,
|
||
|
|
"clientKind": "git",
|
||
|
|
"useIgnoreFile": false
|
||
|
|
},
|
||
|
|
"files": { "ignoreUnknown": false, "ignore": [] },
|
||
|
|
"formatter": {
|
||
|
|
"enabled": true,
|
||
|
|
"formatWithErrors": false,
|
||
|
|
"indentStyle": "space",
|
||
|
|
"indentWidth": 2,
|
||
|
|
"lineEnding": "lf",
|
||
|
|
"lineWidth": 150,
|
||
|
|
"attributePosition": "auto",
|
||
|
|
"ignore": [
|
||
|
|
"**/.DS_Store",
|
||
|
|
"**/node_modules",
|
||
|
|
"./build",
|
||
|
|
"./.svelte-kit",
|
||
|
|
"./package",
|
||
|
|
"**/.env",
|
||
|
|
"**/.env.*",
|
||
|
|
"**/pnpm-lock.yaml",
|
||
|
|
"**/package-lock.json",
|
||
|
|
"**/yarn.lock",
|
||
|
|
"**/paraglide/**"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"organizeImports": { "enabled": true },
|
||
|
|
"linter": { "enabled": true, "rules": { "recommended": true } },
|
||
|
|
"javascript": {
|
||
|
|
"formatter": {
|
||
|
|
"jsxQuoteStyle": "single",
|
||
|
|
"quoteProperties": "asNeeded",
|
||
|
|
"trailingCommas": "all",
|
||
|
|
"indentStyle": "space",
|
||
|
|
"lineEnding": "lf",
|
||
|
|
"lineWidth": 150,
|
||
|
|
"semicolons": "always",
|
||
|
|
"arrowParentheses": "always",
|
||
|
|
"bracketSpacing": true,
|
||
|
|
"bracketSameLine": false,
|
||
|
|
"quoteStyle": "single",
|
||
|
|
"attributePosition": "auto"
|
||
|
|
},
|
||
|
|
"parser": {
|
||
|
|
"unsafeParameterDecoratorsEnabled": true
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"overrides": [
|
||
|
|
{
|
||
|
|
"include": ["*.svelte"],
|
||
|
|
"linter": {
|
||
|
|
"rules": {
|
||
|
|
"style": {
|
||
|
|
"useConst": "off",
|
||
|
|
"useImportType": "off"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|