1.0.3 • Published 9 years ago

htmlhint-stylish v1.0.3

Weekly downloads
1,028
License
MIT
Repository
github
Last release
9 years ago

htmlhint-stylish Build Status

Stylish reporter for HTMLHint

Uses jshint-stylish to do the actual reporting:

npm.io

Compared to the default reporter:

npm.io

Install

$ npm install --save-dev htmlhint-stylish

Usage

gulp-htmlhint

var gulp = require('gulp');

gulp.task('default', function () {
    gulp.src(['index.html'])
        .pipe(htmlhint('.htmlhintrc'))
        .pipe(htmlhint.reporter('htmlhint-stylish'))
        .pipe(htmlhint.failReporter({
            supress: true
        })); // if you want to your task to fail on error(s)

License

MIT © Rahul Doshi