From 02c71ce97c1ba17802b5a0bdb6e2da49f048f322 Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Thu, 10 Sep 2020 17:22:50 -0500 Subject: [PATCH] build(lint): disable console lint warnings --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index eaab7f2f..ed193b9d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -21,7 +21,7 @@ module.exports = { }, ], - 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-console': 'off', 'import/no-extraneous-dependencies': ['error', { devDependencies: true }], }, };