mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fail on errors
This commit is contained in:
parent
fd8c4bdb9d
commit
2c4b0cad74
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ gulp.task('js', function() {
|
|||
gulp.task('js-lint', function() {
|
||||
return gulp.src('js/**/*.js')
|
||||
.pipe(jshint())
|
||||
.pipe(jshint.reporter('default'));
|
||||
.pipe(jshint.reporter('default'))
|
||||
.pipe(jshint.reporter('fail'))
|
||||
});
|
||||
|
||||
// Fonts
|
||||
|
|
Loading…
Reference in a new issue