{ "$schema": "../node_modules/@biomejs/biome/configuration_schema.json", "root": false, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedVariables": "error", "noUnusedImports": "error", "noEmptyPattern": "off", "useExhaustiveDependencies": "off" }, "style": { "noParameterAssign": "error", "useAsConstAssertion": "error", "useDefaultParameterLast": "error", "useEnumInitializers": "error", "useSelfClosingElements": "error", "useSingleVarDeclarator": "error", "noUnusedTemplateLiteral": "error", "useNumberNamespace": "error", "noInferrableTypes": "error" }, "suspicious": { "noDebugger": "off", "noDoubleEquals": "off", "noExplicitAny": "off", "noApproximativeNumericConstant": "off", "noAsyncPromiseExecutor": "off" }, "complexity": { "noUselessConstructor": "off", "noBannedTypes": "off", "useLiteralKeys": "off", "useArrowFunction": "warn", "useDateNow": "off", "noUselessFragments":"off" }, "performance": { "noAccumulatingSpread": "off" }, "a11y": { "useSemanticElements": "off" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2 }, "javascript": { "formatter": { "enabled": true, "semicolons": "asNeeded", "arrowParentheses": "always", "bracketSameLine": false, "trailingCommas": "all", "attributePosition": "multiline" } } }