From b530895c254caa4c50fe16570955090b93c355bd Mon Sep 17 00:00:00 2001 From: Sean Hellwig <147074+seanhellwig@users.noreply.github.com> Date: Mon, 6 May 2024 11:54:00 -0600 Subject: [PATCH] Adds no-debugger rule to root eslint config file --- .eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index ec15ce6830b4..030209c47dea 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -13,6 +13,7 @@ module.exports = { 'func-style': ['error', 'declaration', { allowArrowFunctions: true }], 'no-console': ['warn', { allow: ['group', 'groupCollapsed', 'groupEnd'] }], 'no-control-regex': 0, + 'no-debugger': 'error', 'no-duplicate-imports': 'error', 'no-undef': 'off', 'no-unused-vars': 'off',