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, },