Skip to content

Commit 95c6c0b

Browse files
author
benholloway
committed
Merge remote-tracking branch 'origin/jshint' into jshint
2 parents 5f6e194 + ddaac53 commit 95c6c0b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/jshint.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ gulp.task('lint', function() {
1212
glob = ['lib/**/*.js', 'tasks/**/*.js', 'bin/**/*.js', 'test/specs/**/*.js'];
1313
return gulp.src(glob, {cwd: cwd})
1414
.pipe(jshint(config))
15-
.pipe(jshint.reporter(stylish));
15+
.pipe(jshint.reporter(stylish))
16+
.pipe(jshint.reporter('fail'));
1617
});
1718

18-
gulp.start('lint');
19+
gulp.start('lint');

0 commit comments

Comments
 (0)