From 5dd4c676379b6b29a42dc5f2a8f86cedcb4ebb7e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 11 Nov 2024 17:02:10 +0100 Subject: [PATCH] lint no console log --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 3836ab1a..ad8b6e75 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -45,7 +45,7 @@ module.exports = { 'react-hooks/exhaustive-deps': 'warn', // Checks effect dependencies 'react/react-in-jsx-scope': 'off', // Disable requirement for React import // 'no-catch-all/no-catch-all': 'error', - // 'no-console': 'error', + 'no-console': 'error', 'no-debugger': 'error', camelcase: 'error', indent: ['error', 2],