From 143a6b3c9b75533c029cc42ca6d17360f50b8d91 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Fri, 4 Oct 2024 19:19:38 +0200 Subject: [PATCH] fix: eslint config --- .eslintrc.cjs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 1ee5e11..625f077 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,9 +1,11 @@ module.exports = { - extends: "@terrestris/eslint-config-typescript", + extends: '@terrestris/eslint-config-typescript', rules: { - "no-underscore-dangle": "off", + 'no-underscore-dangle': 'off', + 'no-shadow': 'off', + '@typescript-eslint/no-shadow': ['error'], camelcase: [ - "off", + 'off', { ignoreImports: true, },