{ "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": true, "includes": ["**", "!**/dist", "!node_modules/**", "!src/generated/**"], "maxSize": 2097152 }, "assist": { "actions": { "source": { "organizeImports": "on" } } }, "linter": { "rules": { "complexity": { "noUselessCatch": "off" }, "correctness": { "noUnusedImports": "error", "noUnusedFunctionParameters": "error", "noUnusedVariables": "off" }, "style": { "noNonNullAssertion": "off", "noParameterAssign": "error", "useAsConstAssertion": "error", "useDefaultParameterLast": "error", "useSelfClosingElements": "error", "useSingleVarDeclarator": "error", "noUnusedTemplateLiteral": "error", "useNumberNamespace": "error", "noInferrableTypes": "error", "noUselessElse": "error" }, "suspicious": { "noExplicitAny": "off", "noRedeclare": "off" } } } }