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 e2d7435..f62abfd 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -177,6 +177,7 @@ module.exports = { { paths: [{ name: 'console', importNames: ['assert'], message: 'Import from the `assert` module instead.' }] } ], 'no-restricted-globals': ['error', ...globals.map((v) => ({ name: v, message: "Don't use DOM globals." }))], - '@typescript-eslint/no-namespace': 'off' + '@typescript-eslint/no-namespace': 'off', + 'no-debugger': 'warn' } }; |