{ "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", "files": { "ignoreUnknown": true, "ignore": ["dist", "node_modules", "coverage"] }, "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedImports": "error", "noUnusedVariables": "error" }, "style": { "useConst": "error", "useTemplate": "warn" }, "suspicious": { "noExplicitAny": "warn", "noConsoleLog": "warn" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100, "lineEnding": "lf" }, "javascript": { "formatter": { "quoteStyle": "single", "trailingCommas": "all", "semicolons": "always", "arrowParentheses": "always" } } }