{ "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "organizeImports": { "enabled": true }, "files": { "ignore": [ "node_modules", "tmp", ".next", "dist", "coverage", "op.js", "op1.js", "*.css" ] }, "linter": { "enabled": true, "rules": { "recommended": true, "a11y": { "noSvgWithoutTitle": "off", "useAltText": "off", "noLabelWithoutControl": "off", "useFocusableInteractive": "off", "useSemanticElements": "off" }, "style": { "noNonNullAssertion": "off" }, "correctness": { "useExhaustiveDependencies": "off" }, "performance": { "noDelete": "off", "noAccumulatingSpread": "off" }, "suspicious": { "noExplicitAny": "off", "noShadowRestrictedNames": "off" }, "security": { "noDangerouslySetInnerHtml": "off" }, "complexity": { "noForEach": "off" } } }, "formatter": { "indentStyle": "space", "indentWidth": 2 }, "javascript": { "formatter": { "quoteStyle": "single" } } }