From 286bd993dc0adcc8734a297177cac5473f7167db Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Mon, 2 Sep 2024 14:15:47 -0500 Subject: [PATCH] accidental revert moment --- .eslintrc.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index e6073be..2b2be42 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,7 +5,6 @@ "rules": { "no-await-in-loop": "warn", "no-unused-labels": "warn", - "no-unused-vars": "off", "quotes": ["error", "double"], "max-lines-per-function": [ "error", @@ -25,6 +24,14 @@ "no-unreachable": "warn", "no-undef": "off", "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/ban-ts-comment": "off" + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/no-unused-vars": [ + "warn", + { + "argsIgnorePattern": "^_", + "varsIgnorePattern": "^_", + "caughtErrorsIgnorePattern": "^_" + } + ] } }