From ff251838568c4682fe5428e7d4413c97ff4bf84d Mon Sep 17 00:00:00 2001 From: Suyash Mishra Date: Sun, 24 Nov 2024 03:12:11 +0530 Subject: [PATCH] Adding the no-unused-var check for cleaner coding practices (#2465) --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 26470f7aab..b3704d9aa1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -55,6 +55,7 @@ "import/no-duplicates": "error", "tsdoc/syntax": "error", "@typescript-eslint/ban-ts-comment": "error", + "@typescript-eslint/no-unused-vars": "error", "@typescript-eslint/no-explicit-any": "error", "@typescript-eslint/no-inferrable-types": "error", "@typescript-eslint/no-non-null-asserted-optional-chain": "error",