From 9fcff4e0c64e37810515171995a5a5a7cd39b684 Mon Sep 17 00:00:00 2001 From: Nicolas Vargas Date: Mon, 20 May 2024 18:29:48 -0300 Subject: [PATCH] eslint: disable no-console rule --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index e637c66c..9dcd1396 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -8,7 +8,7 @@ module.exports = { '@vue/standard' ], rules: { - 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'no-console': 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' }, parserOptions: {