From 691ed98209e52bccc2ae4f6a94b4aff3d2b2f8ee Mon Sep 17 00:00:00 2001 From: Suyash Mishra Date: Sat, 23 Nov 2024 16:08:34 +0000 Subject: [PATCH] Adding the no-unused-var check for cleaner coding practices --- .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",