[TASK] Eslint - console.log replace error with warning

Error stops build and log can be useful in development
This commit is contained in:
Xaver Maierhofer 2016-06-22 02:55:36 +02:00
parent e9bf073e49
commit daf7a05d5c
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@
rules:
"semi": ["error", "always"]
"no-undef": 0
"no-console": ["error", { allow: ["warn", "error"] }]
"no-console": ["warn", { allow: ["warn", "error"] }]