{ "$schema": "https://biomejs.dev/schemas/2.5.5/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": true, "includes": ["**", "!**/dist", "!**/node_modules", "!**/.yarn", "!**/*.lock"] }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "linter": { "enabled": true, "rules": { "preset": "recommended", "complexity": { "noForEach": "off" }, "suspicious": { "noExplicitAny": "off" }, "style": { "noNonNullAssertion": "off" } } }, "javascript": { "formatter": { "quoteStyle": "single", "trailingCommas": "es5" } }, "overrides": [ { "includes": ["**/tests/**"], "linter": { "rules": { "performance": { "noDelete": "off" } } } } ] }