From 9f7a492e2049d0995fe81db37b0931b8adc4f2dc Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Thu, 13 Jul 2023 11:57:47 -0400 Subject: [PATCH] Update unused var rule to error --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index f3671e0faf..44fd0a3046 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -276,6 +276,7 @@ module.exports = { ], rules: { '@typescript-eslint/no-floating-promises': ['error'], + '@typescript-eslint/no-unused-vars': ['error'], 'sonarjs/cognitive-complexity': ['error'] }