JSHint TeamCity Reporter to report using compilation messages as an alternative to using test suites.
jshint-teamcity-compile
can be installed using npm:
npm install jshint-teamcity-compile --save-dev
To use, point jshint
at the reporter
jshint --reporter node_modules/jshint-teamcity-compile/teamcity.js *.js
Using gulp-jshint
var jshintCompileReporter = require('jshint-teamcity-compile');
gulp.task('jshint', function() {
gulp.src('*.js')
.pipe(jshint())
.pipe(jshint.reporter(jshintCompileReporter));
});
Thanks to jshint-teamcity.
MIT © Jim Karg