I\'m using Gulp in my small project in order to run tests and lint my code. When any of those tasks fail, Gulp always exits with return code 0. If I run jshint by hand, it e
A fix has been introduced in this commit.
It works something like this:
gulp.src("src/**/*.js") .pipe(jshint()) .pipe(jshint.reporter("default")) .pipe(jshint.reporter("fail"));
I have been using it on circleci and it works a treat!