{ "root": false, "$schema": "https://biomejs.dev/schemas/2.5.1/schema.json", "files": { "includes": [ "src/**", "__tests__/**", "build.ts", "*.ts", "!dist", "!node_modules", "!.cache", "!.turbo" ] }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "enabled": true, "rules": { "preset": "recommended", "correctness": { "noUnusedVariables": "error" }, "style": { "noNonNullAssertion": "warn" }, "suspicious": { "noExplicitAny": "warn" } } }, "formatter": { "enabled": true, "indentWidth": 2, "indentStyle": "space", "lineWidth": 100 }, "javascript": { "formatter": { "quoteStyle": "single", "trailingCommas": "es5", "semicolons": "always" } } }