{ "$schema": "https://biomejs.dev/schemas/2.4.7/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "assist": { "enabled": true }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "linter": { "enabled": true, "rules": { "recommended": true, "complexity": { "noForEach": "off" }, "style": { "noNonNullAssertion": "warn", "useConst": "error" }, "suspicious": { "noExplicitAny": "warn", "noAssignInExpressions": "off", "noTemplateCurlyInString": "off" } } }, "javascript": { "formatter": { "quoteStyle": "double", "trailingCommas": "all", "semicolons": "always" } }, "files": { "includes": [ "packages/**/*.ts", "packages/**/*.tsx", "packages/**/*.js", "scripts/**/*.mjs", "tests/pi-rpc/**/*.ts", "benchmarks/codegraph-replication/**/*.ts" ] }, "overrides": [ { "includes": ["**/__tests__/**", "**/*.test.ts"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" }, "style": { "noNonNullAssertion": "off" } } } }, { "includes": ["**/*.d.ts"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" } } } }, { "includes": ["**/tui/**/*.tsx"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" }, "style": { "noNonNullAssertion": "off" }, "a11y": { "noStaticElementInteractions": "off" } } } } ] }