0.0.2 • Published 9 years ago

gulp-jshint-bamboo v0.0.2

Weekly downloads
1
License
CC BY 3.0
Repository
github
Last release
9 years ago

gulp-jshint-bamboo

Static Code Analysis Tool with jshint

Issues with the output should be reported on the jshint issue tracker.

Install

$ npm install --save-dev gulp-jshint-bamboo

Usage

var gulp = require('gulp');
var jshintBamboo = require('gulp-jshint-bamboo');

gulp.task(
  'jshint',
  function() {
    return gulp.src([
      './dev/*.js',
      './dev/**/*.js',
      '!/dev/libs/**/*.js'
    ])
    .pipe(jshintBamboo())
  }
);

Results

mocha-bamboo-reporter

License

CC BY 3.0