jb-gulp-lesshint-stylish

1.0.1 • Public • Published

Gulp Lesshint Stylish reporter

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

Fork from here.

Install

$ npm install --save-dev gulp-lesshint-stylish

Usage

var lesshint = require('gulp-lesshint');
var noop = function () {};
var stylish = require('gulp-lesshint-stylish');

gulp.task('default', function () {
	gulp.src([ 'file.less' ])
		.pipe(lesshint())      // enforce style guide
		.on('error', noop) // don't stop on error
		.pipe(stylish());  // log style errors
});

Credits

Based on the work of Christoph Werner: gulp-jscs-stylish

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i jb-gulp-lesshint-stylish

    Weekly Downloads

    0

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    2.37 kB

    Total Files

    3

    Last publish

    Collaborators

    • cybind