{ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedImports": "warn", "noUnusedVariables": "warn" }, "style": { "noNonNullAssertion": "off", "useImportType": "off" }, "suspicious": { "noExplicitAny": "off", "noExportsInTest": "off", "noImplicitAnyLet": "off" }, "complexity": { "noForEach": "off" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always", "trailingCommas": "es5" } }, "files": { "ignore": [ "node_modules", "dist", "frontend", "*.json", "*.md" ] } }