From 63e397a1f53a4eb29ab360dc964353a098ad5e92 Mon Sep 17 00:00:00 2001 From: Bart Mesuere Date: Thu, 28 Nov 2024 13:06:53 +0100 Subject: [PATCH] tweak eslint config --- eslint.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 195212d1..c5087259 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -9,7 +9,10 @@ export default [ ...tseslint.configs.recommended, { rules: { - "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], + "@typescript-eslint/no-unused-vars": [ + "error", + { argsIgnorePattern: "^_", caughtErrors: "none" } + ], "@typescript-eslint/ban-ts-comment": "off", }, ignores: ["dist/"]