1
0
Fork 0

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 <fredy@fredy.gr>
spacecruft
Alfredos-Panagiotis Damkalis 2020-04-19 16:11:16 +03:00
parent 4ba7b8cfa9
commit a088e5d03b
1 changed files with 1 additions and 2 deletions

View File

@ -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() {