gulp-jscs-stylish

1.4.0 • Public • Published

gulp-jscs-stylish

Stylish reporter for gulp-jscs, uses jshint-stylish to do the actual reporting:

screenshot

Compared to the default output:

screenshot

Install

$ npm i --save-dev gulp-jscs-stylish

Usage

var jscs = require('gulp-jscs');
var noop = function () {};
var stylish = require('gulp-jscs-stylish');
 
gulp.task('default', function () {
    gulp.src([ 'file.js' ])
        .pipe(jscs())      // enforce style guide
        .pipe(stylish());  // log style errors
});

Combine results with those of JSHint

var jscs = require('gulp-jscs');
var jshint = require('gulp-jshint');
var noop = function () {};
var stylish = require('gulp-jscs-stylish');
 
gulp.task('default', function () {
    gulp.src([ 'file.js' ])
        .pipe(jshint())                           // hint (optional)
        .pipe(jscs())                             // enforce style guide
        .pipe(stylish.combineWithHintResults())   // combine with jshint results
        .pipe(jshint.reporter('jshint-stylish')); // use any jshint reporter to log hint
                                                  // and style guide errors
});

using .pipe(jshint()) is optional. you may very well use the reporter without running jshint

License

MIT © Christoph Werner

Package Sidebar

Install

npm i gulp-jscs-stylish

Weekly Downloads

1,373

Version

1.4.0

License

MIT

Last publish

Collaborators

  • cwer