diff --git a/ivette/.eslintrc.js b/ivette/.eslintrc.js
index 5ceebe2f3bcc62a347f25840bc542a93a6d0004f..4244c156a8043cd71bedb279b7c2d9d04fe240b9 100644
--- a/ivette/.eslintrc.js
+++ b/ivette/.eslintrc.js
@@ -64,5 +64,7 @@ module.exports = {
     ],
     // Disallow the use of var in favor of let and const
     "no-var": "error",
+    // Disallow the use of console.*, except for warnings and errors
+    "no-console": ["error", { allow: ["warn", "error"] }],
   }
 };