From 86fc5013b07a01422c13f50eaf239fe830771ba9 Mon Sep 17 00:00:00 2001 From: zipang Date: Thu, 7 Sep 2017 15:17:41 +0200 Subject: [PATCH] The lint process gives a lot of errors like `77:424 error Unnecessary escape character: \- no-useless-escape` preventing the build --- gulpfile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 702a162..5ec72f0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -38,8 +38,7 @@ gulp.task("lint", ["prettify-js"], function() { gulp.src("./src/js/**/*.js") .pipe(debug()) .pipe(eslint()) - .pipe(eslint.format()) - .pipe(eslint.failAfterError()); + .pipe(eslint.format()); }); function taskBrowserify(opts) { @@ -93,4 +92,4 @@ gulp.task("styles", ["prettify-css"], function() { .pipe(gulp.dest("./dist/")); }); -gulp.task("default", ["scripts", "styles"]); +gulp.task("default", ["scripts", "styles"]); \ No newline at end of file