From b8cf1d82832e72dcf859800986127ef899951300 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sat, 30 Jul 2022 07:04:01 -0700 Subject: [PATCH] Disable no-shadow rule Resolves a conflict with typescript enum values --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 7dcbe7a57..b15f3dec3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,6 +11,7 @@ module.exports = { rules: { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/no-shadow': ['off'], // A temporary hack related to IDE not resolving correct package.json 'import/no-extraneous-dependencies': 'off', 'import/no-unresolved': 'error',