From 90bb8f2c19afc4ac89bff7db40c40d8b2426a075 Mon Sep 17 00:00:00 2001 From: MathieuG-P <40181755+Zagrios@users.noreply.github.com> Date: Sat, 3 Feb 2024 23:22:28 +0100 Subject: [PATCH] Fix eslint rule for no-shadow --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index d634c798..2e243083 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -55,6 +55,7 @@ module.exports = { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": "error", 'react/jsx-filename-extension': [2, { 'extensions': ['.js', '.jsx', '.ts', '.tsx'] }], + "no-shadow": "off", }, parserOptions: { ecmaVersion: 2020,