diff --git a/gulp/tasks/jshint.js b/gulp/tasks/jshint.js index c6da7c07..382f9154 100644 --- a/gulp/tasks/jshint.js +++ b/gulp/tasks/jshint.js @@ -18,5 +18,6 @@ gulp.task('jshint', function () { return gulp.src('src/**/*.js') .pipe(cache('jshint', { optimizeMemory: true })) .pipe(jshint()) - .pipe(jshint.reporter('jshint-summary')); + .pipe(jshint.reporter('jshint-summary')) + .pipe(jshint.reporter('fail')); });