1.4.0 • Published 8 years ago

gulp-jscs-stylish v1.4.0

Weekly downloads
1,884
License
MIT
Repository
github
Last release
8 years ago

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