JSHint Visual Studio reporter
Install with npm: npm install --save-dev jshint-visual-studio
Use it with:
jshint --reporter node_modules/jshint-visual-studio/visual-studio.js file.js
gulp.task('default', function () {
gulp.src(["file.js"])
.pipe(jshint(".jshintrc"))
.pipe(jshint.reporter("jshint-visual-studio"));
});
Thanks to jshint-teamcity.
MIT © Patrick Lafrance