diff --git a/war/gulpfile.js b/war/gulpfile.js index 320206b228f11c5d5d737f9121a633f214c7f16a..b0a4d7b85658cf1c1d52d2b18cb3d5291a30acd1 100644 --- a/war/gulpfile.js +++ b/war/gulpfile.js @@ -54,5 +54,6 @@ builder.bundle('src/main/js/add-item.js') gulp.task('lint', function() { return gulp.src('./src/main/js/**/*.js') .pipe(jshint()) - .pipe(jshint.reporter('default')); + .pipe(jshint.reporter('default')) + .pipe(jshint.reporter('fail')); });