From a088e5d03b627e78a37c779deca71fc0123e7833 Mon Sep 17 00:00:00 2001 From: Alfredos-Panagiotis Damkalis Date: Sun, 19 Apr 2020 16:11:16 +0300 Subject: [PATCH] Remove eslint.failAfterError() In case of eslint error eslint.failAfterError() didn't let csslint to finish. With removing eslint.failAfterError() both tasks run in parallel and finish. Signed-off-by: Alfredos-Panagiotis Damkalis --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4e5e4a2..45df7c8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,8 +16,7 @@ gulp.task('js:lint', function() { return gulp.src(lintPathsJS) .pipe(eslint()) - .pipe(eslint.format()) - .pipe(eslint.failAfterError()); + .pipe(eslint.format()); }); gulp.task('css:lint', function() {