meshviewer/.eslintrc
Xaver Maierhofer daf7a05d5c [TASK] Eslint - console.log replace error with warning
Error stops build and log can be useful in development
2016-06-22 02:55:46 +02:00

9 lines
161 B
Plaintext

---
"extends":
- "defaults/configurations/eslint"
rules:
"semi": ["error", "always"]
"no-undef": 0
"no-console": ["warn", { allow: ["warn", "error"] }]