summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorPedro Ferreira2019-05-09 08:45:00 +0200
committerPedro Ferreira2019-05-12 20:15:46 +0200
commit23f22d1fa6ebbfe9756b0619c76f1f359bd17222 (patch)
tree9e009ae443d23dcbfc57be7c213d69be84986dc9 /.eslintrc.js
parent26dacde9591b4994529d8f536712b797cef5a36f (diff)
Add no-console as a warning
Signed-off-by: Pedro Ferreira <pedro@dete.st>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index b826a37b..cdd673fd 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -10,6 +10,7 @@ module.exports = {
// wrong.
"import/first": ["warn"],
"indent": ["warn"],
+ "no-console": ["warn"],
"no-multiple-empty-lines": ["warn"],
"no-multi-spaces": ["warn"],
"object-curly-spacing": ["warn"],