diff --git a/lib-chia/.eslintrc.js b/lib-chia/.eslintrc.js index 6dd5cc5e..e11bdd5c 100644 --- a/lib-chia/.eslintrc.js +++ b/lib-chia/.eslintrc.js @@ -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", }, }; \ No newline at end of file diff --git a/ui/.eslintrc.js b/ui/.eslintrc.js index 7d1e2f63..05bef65b 100644 --- a/ui/.eslintrc.js +++ b/ui/.eslintrc.js @@ -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",