Skip to content

stevenquiroa/gulp-jshint-notify-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-jshint-notify-reporter

Send native system notifications when an error or warning occur.

Instalation

npm install gulp-jshint-notify-reporter --save

Usage

var gulp   = require('gulp');
var jshint = require('gulp-jshint');
var notificator = require('gulp-jshint-notify-reporter');

gulp.task('lint', function() {
  return gulp.src('./lib/*.js')
    .pipe(jshint())
    .pipe(jshint.reporter('default'))
    .pipe( notificator() );
});

Options

Plugin options:

  • warning_length

    • Default: 3
    • Define how many warnings are shown up.
  • error_length

    • Default: 3
    • Define how many errors are shown up.

About

Gulp jshint reporter, send native system notifications when an error or warning occur.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •