From 9dae1ade60a744fe7e92a8612cab2fbe324e1886 Mon Sep 17 00:00:00 2001 From: Daniel D Orlando Date: Sun, 2 Apr 2023 12:49:44 -0700 Subject: [PATCH] turn off no-debugger in eslintrc for debugginer purposes --- client/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/.eslintrc.js b/client/.eslintrc.js index 2f2422bac8..7b8f7bd096 100644 --- a/client/.eslintrc.js +++ b/client/.eslintrc.js @@ -26,5 +26,6 @@ module.exports = { "rules": { 'react/prop-types': ['off'], 'react/display-name': ['off'], + "no-debugger":"off", } }