{ "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json", "files": { "includes": [ "main.ts", "src/**/*.ts", "tests/**/*.js", "scripts/**/*.mjs", ".e2e/scripts/**/*.mjs", "esbuild.config.mjs" ] }, "linter": { "enabled": true, "rules": { "recommended": true, "suspicious": { "noExplicitAny": "error", "noRedundantUseStrict": "off", "noImplicitAnyLet": "error" }, "style": { "noNonNullAssertion": "error", "useConst": "warn", "useNodejsImportProtocol": "off", "useTemplate": "off" }, "complexity": { "noForEach": "off" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 120 }, "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always", "trailingCommas": "all" } } }