From 8536335f98d47453b9542c34c98f056871269dc6 Mon Sep 17 00:00:00 2001 From: thislooksfun Date: Wed, 4 Dec 2019 23:16:39 -0600 Subject: [PATCH] Enable console --- .eslintrc.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index df745fc2..8606eeb9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,7 +5,9 @@ module.exports = { }, extends: ["plugin:vue/essential", "eslint:recommended"], rules: { - "no-console": process.env.NODE_ENV === "production" ? "error" : "off", + // TODO: Disable console in production. + // "no-console": process.env.NODE_ENV === "production" ? "error" : "off", + "no-console": "off", "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", }, parserOptions: {