{ "$schema": "https://biomejs.dev/schemas/2.2.0/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": true, "includes": ["**", "!node_modules", "!.next", "!dist", "!build", "!coverage", "!playwright-report"] }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2 }, "javascript": { "globals": ["vi", "describe", "it", "test", "expect"] }, "linter": { "enabled": true, "rules": { "recommended": true, "style": { "useConst": "warn", "noNonNullAssertion": "warn", "useImportType": "warn", "noParameterAssign": "warn" }, "correctness": { "noUnusedVariables": "error" }, "suspicious": { "noExplicitAny": "warn", "noDoubleEquals": "error" }, "complexity": { "noUselessFragments": "warn" } }, "domains": { "next": "recommended", "react": "recommended" } }, "assist": { "actions": { "source": { "organizeImports": "on" } } } }