Skip to content

Commit

Permalink
turn off no-console warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wizicer committed Dec 6, 2023
1 parent b3adf5c commit d80ef53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib-chia/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
sourceType: "module"
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-console": "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
},
};
2 changes: 1 addition & 1 deletion ui/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
sourceType: "module"
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-console": "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/valid-v-if": "off",
"valid-v-if": "off",
Expand Down

0 comments on commit d80ef53

Please sign in to comment.