[Build] Don't lint specs

This commit is contained in:
Victor Woeltjen 2016-03-04 10:27:34 -08:00
parent 28ae62b4ac
commit f092bfe653

View File

@ -98,7 +98,7 @@ gulp.task('stylesheets', function () {
}); });
gulp.task('lint', function () { gulp.task('lint', function () {
return gulp.src(paths.scripts) return gulp.src(paths.scripts.concat(['!**/test/*', '!**/*Spec.js']))
.pipe(jshint()) .pipe(jshint())
.pipe(jshint.reporter('default')) .pipe(jshint.reporter('default'))
.pipe(jshint.reporter('fail')); .pipe(jshint.reporter('fail'));