{ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "enabled": true, "rules": { "recommended": true, "a11y": { "recommended": false }, "correctness": { "noUnusedImports": "error", "noUnusedVariables": "warn", "useExhaustiveDependencies": "warn" }, "suspicious": { "noExplicitAny": "off", "noArrayIndexKey": "off", "noImplicitAnyLet": "off", "noTemplateCurlyInString": "off", "useIterableCallbackReturn": "off", "noShadowRestrictedNames": "off", "noAssignInExpressions": "off" }, "style": { "noNonNullAssertion": "off" }, "complexity": { "noStaticOnlyClass": "off" }, "performance": { "noImgElement": "off" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "javascript": { "formatter": { "quoteStyle": "double", "trailingCommas": "es5", "arrowParentheses": "always", "semicolons": "always" } }, "css": { "parser": { "cssModules": true, "tailwindDirectives": true }, "formatter": { "enabled": true }, "linter": { "enabled": false } }, "overrides": [ { "includes": ["**/src/components/ui/**"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" }, "correctness": { "noUnusedVariables": "off" }, "security": { "noDangerouslySetInnerHtml": "off" } } } }, { "includes": ["**/tests/**", "**/*.test.ts", "**/*.test.tsx"], "linter": { "rules": { "correctness": { "noUnusedVariables": "off", "noUnusedImports": "off" } } }, "assist": { "actions": { "source": { "organizeImports": "off" } } } } ], "files": { "includes": [ "src/**", "tests/**", "*.ts", "*.tsx", "*.json", "*.mjs", "*.cjs", "!**/node_modules", "!**/.next", "!**/dist", "!**/drizzle", "!**/docs-site" ] } }