gulp-lesshint-stylish

1.0.0 • Public • Published

Gulp Lesshint Stylish reporter

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

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 gulp-lesshint-stylish

    Weekly Downloads

    2

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • mark.sagikazar