Skip to content

mollerse/jshint-growl-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jshint-growl-reporter

NPM version Build Status Dependency Status

Growl reporter for JSHint

Reports summary when there are multiple errors, shows specific error when there is only one error.

Install

Install with npm: npm install -D jshint-growl-reporter

Usage

Use it with:

JSHint CLI

jshint --reporter jshint-growl-reporter.js file.js
gulp.task('default', function () {
  gulp.src(['file.js'])
    .pipe(jshint('.jshintrc'))
    .pipe(jshint.reporter('jshint-growl-reporter'));
});
grunt.initConfig({
  jshint: {
    options: {
      reporter: require('jshint-growl-reporter')
    },
    target: ['file.js']
  }
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);

License

MIT License

About

Growl reporter for JSHint

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published