{ "$schema": "https://biomejs.dev/schemas/2.5.9/schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": false, "includes": [ "**", "!**/dist", "!**/coverage", "!**/node_modules", "!**/.pnpm-store", "!**/cypress/videos", "!**/cypress/screenshots" ] }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "enabled": true, "rules": { "preset": "recommended", "complexity": { "noUselessCatch": "off" }, "nursery": { "noFloatingPromises": "error" }, "style": { "noNonNullAssertion": "warn", "useConsistentArrayType": { "level": "error", "options": { "syntax": "shorthand" } }, "useConsistentTypeDefinitions": { "level": "error", "options": { "style": "interface" } } }, "suspicious": { "noConsole": { "level": "error", "options": { "allow": ["error", "warn", "info", "debug", "table", "assert"] } }, "noExplicitAny": "error" } } }, "javascript": { "formatter": { "quoteStyle": "double", "semicolons": "always", "trailingCommas": "all" } } }