Skip to content
Snippets Groups Projects
Commit 0cf43a29 authored by Valentin Perrelle's avatar Valentin Perrelle
Browse files

[ivette] lint: revert to the usage of no-console rule

parent 6b3f6616
No related branches found
No related tags found
No related merge requests found
...@@ -64,5 +64,7 @@ module.exports = { ...@@ -64,5 +64,7 @@ module.exports = {
], ],
// Disallow the use of var in favor of let and const // Disallow the use of var in favor of let and const
"no-var": "error", "no-var": "error",
// Disallow the use of console.*, except for warnings and errors
"no-console": ["error", { allow: ["warn", "error"] }],
} }
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment