{ "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": false, "includes": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "**/*.json"] }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedVariables": "warn", "noUnusedImports": "warn" }, "style": { "useConst": "warn" }, "suspicious": { "noExplicitAny": "off" } } }, "javascript": { "formatter": { "quoteStyle": "double", "semicolons": "always", "trailingCommas": "es5" } }, "overrides": [ { "includes": [ "**/node_modules/**", "**/dist/**", "**/.next/**", "**/build/**", "**/coverage/**", "**/generated/**", "**/*.config.js", "**/*.config.ts", "**/bun.lockb" ], "linter": { "enabled": false }, "formatter": { "enabled": false } } ] }