[Build] Add jscs html reporter

Fixes #1314
This commit is contained in:
Victor Woeltjen
2016-11-15 16:00:40 -08:00
parent 3dade275d4
commit 3dc8bc87fc
2 changed files with 2 additions and 0 deletions

View File

@ -130,6 +130,7 @@ gulp.task('checkstyle', function () {
return gulp.src(paths.scripts)
.pipe(jscs())
.pipe(jscs.reporter())
.pipe(jscs.reporter('jscs-html-reporter'))
.pipe(jscs.reporter('fail'));
});