2024-08-19 03:28:15 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"formatWithErrors": false,
|
|
|
|
|
"indentStyle": "tab",
|
|
|
|
|
"indentWidth": 2,
|
|
|
|
|
"lineEnding": "lf",
|
2024-08-23 02:26:22 +00:00
|
|
|
"lineWidth": 150,
|
2024-08-19 03:28:15 +00:00
|
|
|
"attributePosition": "auto",
|
|
|
|
|
"ignore": [
|
|
|
|
|
"**/.DS_Store",
|
|
|
|
|
"**/node_modules",
|
|
|
|
|
"./build",
|
|
|
|
|
"./.svelte-kit",
|
|
|
|
|
"./package",
|
|
|
|
|
"**/.env",
|
|
|
|
|
"**/.env.*",
|
|
|
|
|
"**/pnpm-lock.yaml",
|
|
|
|
|
"**/package-lock.json",
|
|
|
|
|
"**/yarn.lock"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"organizeImports": { "enabled": true },
|
|
|
|
|
"linter": { "enabled": true, "rules": { "recommended": true } },
|
|
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"jsxQuoteStyle": "double",
|
|
|
|
|
"quoteProperties": "asNeeded",
|
|
|
|
|
"trailingCommas": "all",
|
2024-10-07 05:59:12 +00:00
|
|
|
"semicolons": "always",
|
2024-08-19 03:28:15 +00:00
|
|
|
"arrowParentheses": "always",
|
|
|
|
|
"bracketSpacing": true,
|
|
|
|
|
"bracketSameLine": false,
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"attributePosition": "auto"
|
2024-08-23 02:26:22 +00:00
|
|
|
},
|
|
|
|
|
"parser": {
|
|
|
|
|
"unsafeParameterDecoratorsEnabled": true
|
2024-08-19 03:28:15 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"include": ["*.svelte"],
|
|
|
|
|
"linter": {
|
|
|
|
|
"rules": {
|
|
|
|
|
"style": {
|
|
|
|
|
"useConst": "off",
|
|
|
|
|
"useImportType": "off"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|