{ "$schema": "../node_modules/@biomejs/biome/configuration_schema.json", "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "suspicious": { "noDoubleEquals": "off", "noExplicitAny": "off", "noDebugger": "off", "noApproximativeNumericConstant": "off" }, "style": { "noUselessElse": "off" }, "complexity": { "noBannedTypes": "off", "noForEach": "off", "useLiteralKeys": "off", "noUselessConstructor": "off", "useArrowFunction": "off" }, "correctness": { "noEmptyPattern": "off", "noUnusedVariables": "error", "noUnusedImports": "error" }, "performance": { "noAccumulatingSpread": "off" }, "a11y": { "useSemanticElements": "off" } } }, "formatter": { "indentWidth": 2, "indentStyle": "space", "enabled": true }, "javascript": { "formatter": { "semicolons": "asNeeded", "arrowParentheses": "always", "enabled": true, "bracketSameLine": false, "trailingCommas": "all", "attributePosition": "multiline" } } }