Docs: fix lint error in docs/gulpfile.js

This commit is contained in:
Eric Bidelman 2017-04-03 15:07:55 -07:00 коммит произвёл GitHub
Родитель 71b86c51fa
Коммит c299e2e423
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -80,7 +80,7 @@ const handleOk = function(results) {
*/ */
const handleError = function(e) { const handleError = function(e) {
stopServer(); stopServer();
console.error(e); console.error(e); // eslint-disable-line no-console
throw e; // Throw to exit process with status 1. throw e; // Throw to exit process with status 1.
}; };