From 3a21bb6a2ed007f05cb8833cacb633d9a642b9f8 Mon Sep 17 00:00:00 2001 From: Piotr Bulawa Date: Thu, 26 Oct 2023 14:37:12 +0200 Subject: [PATCH] Fix no-console --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 3ed3f4115..a153d0410 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -32,6 +32,7 @@ module.exports = { 'keyword-spacing': ['warn'], 'linebreak-style': ['warn', 'unix'], 'no-async-promise-executor': ['warn'], + 'no-console': ['error', { 'allow': ['warn', 'error'] }], 'no-empty': ['warn'], 'no-ex-assign': ['warn'], 'no-extra-semi': ['warn'],