gulp-jsinspecty

1.0.4 • Public • Published

gulp-jsinspecty

Gulp plugin for running jsinspect & generate a report file (.json, .txt, .md, .html)

Inspire from gulp-jsinspect

Install

$ npm install D gulp-jsinspecty

Usage

var gulp = require('gulp');
var jsinspecty = require('gulp-jsinspecty');
 
gulp.task('default', function () {
  return gulp.src([
      'src/**/*.js',
      '!*.test.js'  
  ])
    .pipe(jsinspecty({
        lineNumber: true,
        reporter: 'markdown', // or a shortner 'md' 
        reportFilename: 'result'
    })) // you can also set options in .jsinspectrc file
    .pipe(gulp.dest('./')); // generate a file 'result.md'
});

Options

reporter

Type: String

Default value: default

Allow values: json, md(or markdown), pmd, html, defalut

lineNumber

Type: Boolean

Default value: false

Show line numbers in reporter

reportFilename

Type: String

Default value: default

Allow values: json, md(or markdown), pmd, defalut

failOnMatch

Type: Boolean

Default value: false

threshold

Type: Number

Default value: 15

Number of nodes.

suppress

Type: Number

Default value: 100

length to suppress diffs (off: 0).

identifiers

Type: Boolean

Default value: false

Match identifiers.

Package Sidebar

Install

npm i gulp-jsinspecty

Weekly Downloads

4

Version

1.0.4

License

MIT

Unpacked Size

16 kB

Total Files

12

Last publish

Collaborators

  • froguard