From 35083b18cc7946c9ca8dca23907edbc5659d60aa Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 27 May 2025 00:36:10 +0200 Subject: [PATCH] Update ESLint config to handle caught errors pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 4e23e00..96e1afe 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -27,7 +27,8 @@ "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", - "varsIgnorePattern": "^_" + "varsIgnorePattern": "^_", + "caughtErrorsIgnorePattern": "^_" }], "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-non-null-assertion": "warn",