robinpowered / gulp-lesshint

Lint your .less files from Gulp with lesshint.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-lesshint

Build Status

Installation

npm install gulp-lesshint --save-dev

Usage

const gulp = require('gulp');
const lesshint = require('gulp-lesshint');

gulp.task('lint', () => {
    return gulp.src('./src/*.less')
        .pipe(lesshint({
            // Options
        }))
        .pipe(lesshint.reporter('reporter-name')) // Leave empty to use the default, "stylish"
        .pipe(lesshint.failOnError()); // Use this to fail the task on lint errors
});

Options

  • configPath
    • Pass a path to a valid configuration file and stop lesshint from looking for a .lesshintrc file.

API

  • lesshint.failOnError()
    • Use this to fail the task when there are at least one lint result with a severity of error.

Reporters

If no reporter name is passed, the default lesshint-reporter-stylish will be used which just prints everything with different colors. If you wish to specify your own, please refer to the lesshint reporter loading steps for the exact logic.

Result

The following properties will be added to the file object.

file.lesshint.success = true; // or false
file.lesshint.resultCount = 0; // number of results returned by lesshint
file.lesshint.results = []; // lesshint results

About

Lint your .less files from Gulp with lesshint.

License:MIT License


Languages

Language:JavaScript 100.0%