Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #140 from thislooksfun/feature/auto-build
Browse files Browse the repository at this point in the history
Enable console
  • Loading branch information
mergify[bot] authored Dec 5, 2019
2 parents aed19c3 + a6ded17 commit 9c5ca65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 9c5ca65

Please sign in to comment.