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