{ "root": true, "$schema": "https://biomejs.dev/schemas/2.2.0/schema.json", "formatter": { "enabled": true, "indentStyle": "tab" }, "assist": { "actions": { "source": { "organizeImports": "off" } } }, "linter": { "enabled": true, "rules": { "recommended": false, "suspicious": { "noImplicitAnyLet": "warn", "noDuplicateObjectKeys": "warn", "noTsIgnore": "error" }, "performance": { "noDelete": "error" }, "complexity": { "noUselessSwitchCase": "warn", "noUselessTypeConstraint": "warn" }, "correctness": { "noUnusedImports": "warn" }, "nursery": { "noMisusedPromises": "error", "noFloatingPromises": "error" } } }, "overrides": [ { "includes": ["**/examples/svelte-kit-example/**"], "linter": { "rules": { "correctness": { "noUnusedImports": "off" } } } }, { "includes": ["**/*.json"], "formatter": { "indentStyle": "space", "indentWidth": 2 } } ], "files": { "includes": [ "**", "!**/dist", "!**/build", "!**/.next", "!**/.svelte-kit", "!**/.contentlayer", "!**/.turbo", "!**/.nuxt", "!**/.source", "!**/.expo", "!**/.cache", "!**/dev/cloudflare/drizzle", "!**/playwright-report" ] } }