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