{ "$schema": "https://biomejs.dev/schemas/2.2.3/schema.json", "files": { "ignoreUnknown": false, "includes": [ "src/**/*", ".vscode/**/*", "index.html", "vite.config.ts", "vitest.config.ts", "vitest.setup.ts", "!**/node_modules", "!**/dist", "!**/build", "!**/coverage" ] }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { "noUnusedVariables": "off", "useExhaustiveDependencies": "off" }, "style": { "noNonNullAssertion": "error", "useImportType": "warn", "useNodejsImportProtocol": "error", "useConsistentArrayType": "error", "noUnusedTemplateLiteral": "off" }, "suspicious": { "noExplicitAny": "error", "noConsole": "off" }, "complexity": { "noExcessiveCognitiveComplexity": "off", "noForEach": "off" }, "performance": { "noDelete": "error" } } }, "overrides": [ { "includes": ["**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" }, "style": { "noNonNullAssertion": "off" }, "correctness": { "noUnusedFunctionParameters": "off", "noUnusedVariables": "off" } } } } ], "formatter": { "enabled": true, "formatWithErrors": false, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100, "lineEnding": "lf" }, "javascript": { "formatter": { "quoteStyle": "single", "jsxQuoteStyle": "double", "trailingCommas": "es5", "semicolons": "always", "arrowParentheses": "always" } } }