{ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "complexity": { "noExcessiveCognitiveComplexity": "warn" }, "correctness": { "noUnusedImports": "warn", "noUnusedVariables": "warn" }, "style": { "noNonNullAssertion": "off", "useImportType": "warn" }, "suspicious": { "noExplicitAny": "off" } } }, "formatter": { "enabled": true, "indentStyle": "tab", "indentWidth": 2, "lineWidth": 100 }, "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "asNeeded" } }, "json": { "formatter": { "indentStyle": "space", "indentWidth": 2 } }, "files": { "ignore": ["node_modules", "dist", "*.d.ts"] } }