1.0.0 • Published 3 years ago

hydra-jshint-reporter v1.0.0

Weekly downloads
4
License
MIT
Repository
-
Last release
3 years ago

HYDRA jshint reporter

A jshint error/warning reporter using an output format that is friendly to VS Code and other editors to use when navigating to the error in your source code.

Getting started

Add hydra-jshint-reporter to your project as follows:

yarn add hydra-jshint-reporter

In your gulpfile, do something like:

function hydra_jshint_services ( ) {
  var jsrc = 'app/services/**/*.js';
  return gulp
  .src(jsrc)
  .pipe(jshint())
  .pipe(jshint.reporter('hydra-jshint-reporter'))
  ;
}
1.0.0

3 years ago