diff options
Diffstat (limited to '.eslintrc.cjs')
-rw-r--r-- | .eslintrc.cjs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.cjs b/.eslintrc.cjs index e65a7c8..b8ef98d 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -174,6 +174,7 @@ module.exports = { 'no-restricted-globals': ['error', ...globals.map((v) => ({ name: v, message: "Don't use DOM globals." }))], '@typescript-eslint/no-namespace': 'off', 'no-debugger': 'warn', - '@typescript-eslint/prefer-as-const': 'warn' + '@typescript-eslint/prefer-as-const': 'warn', + '@typescript-eslint/ban-types': 'off' } }; |