From d4a5cf5de56877343d28a981c426d9447b9bad8f Mon Sep 17 00:00:00 2001 From: Marcin Ciarka Date: Thu, 14 Sep 2023 12:09:09 +0200 Subject: [PATCH] update correct rule --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9f4e48c..79f1786 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,7 +12,8 @@ "memberSyntaxSortOrder": ["none", "all", "multiple", "single"] } ], - "no-unused-vars": [ + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": [ "error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } ]