0.0.4 • Published 10 years ago

jshint-teamcity-compile v0.0.4

Weekly downloads
172
License
MIT
Repository
github
Last release
10 years ago

jshint-teamcity-compile npmVersion

Build Status Dependencies DevDependecies

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