{ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, "files": { "ignoreUnknown": false, "ignore": ["node_modules", "dist", "build", ".next", ".turbo"] }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 80 }, "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "security": { "noDangerouslySetInnerHtml": "info" } } }, "javascript": { "formatter": { "enabled": true, "quoteStyle": "single", "trailingCommas": "none", "semicolons": "asNeeded" } }, "json": { "formatter": { "enabled": true, "trailingCommas": "none" } }, "overrides": [ { "include": ["apps/backend/**"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" }, "style": { "noNonNullAssertion": "off" } } } } ] }