{ "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json", "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, "files": { "ignoreUnknown": false, "includes": ["**"] }, "formatter": { "enabled": true, "formatWithErrors": false, "indentStyle": "space", "indentWidth": 2, "lineEnding": "lf", "lineWidth": 150, "attributePosition": "auto", "includes": [ "**", "!**/.DS_Store", "!**/node_modules", "!build", "!.svelte-kit", "!package", "!**/.env", "!**/.env.*", "!**/pnpm-lock.yaml", "!**/package-lock.json", "!**/yarn.lock", "!**/paraglide/**" ] }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "enabled": true, "rules": { "recommended": true, "style": { "noParameterAssign": "error", "useAsConstAssertion": "error", "useDefaultParameterLast": "error", "useEnumInitializers": "error", "useSelfClosingElements": "error", "useSingleVarDeclarator": "error", "noUnusedTemplateLiteral": "error", "useNumberNamespace": "error", "noInferrableTypes": "error", "noUselessElse": "error" } } }, "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": [ { "includes": ["**/*.svelte"], "linter": { "rules": { "style": { "useConst": "off", "useImportType": "off" } } } } ] }