1.0.0 • Published 5 years ago
hydra-jshint-reporter v1.0.0
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-reporterIn 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
5 years ago