From 0cf43a299abb46c67cc3b11c3b23cbbc61199c7b Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Thu, 3 Feb 2022 20:08:57 +0100
Subject: [PATCH] [ivette] lint: revert to the usage of no-console rule

---
 ivette/.eslintrc.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ivette/.eslintrc.js b/ivette/.eslintrc.js
index 5ceebe2f3bc..4244c156a80 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"] }],
   }
 };
-- 
GitLab