diff --git a/eslint.config.mjs b/eslint.config.mjs index d6b1b22..c914bca 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -80,7 +80,11 @@ export default [ "@typescript-eslint/no-unused-vars": ["warn", { vars: "all", args: "after-used", - ignoreRestSiblings: false + ignoreRestSiblings: false, + argsIgnorePattern: "^_", + caughtErrorsIgnorePattern: "^_", + destructuredArrayIgnorePattern: "^_", + varsIgnorePattern: "^_" }], "@typescript-eslint/no-empty-object-type": "off", "@typescript-eslint/no-require-imports": "off", diff --git a/tsconfig.json b/tsconfig.json index 50151ac..f1475ac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,6 @@ "strictNullChecks": true, "resolveJsonModule": true, "removeComments": true, - "noUnusedLocals": true, "outDir": "dist", "baseUrl": ".", "paths": {