Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

htmlhint-stylish

doshprompt4.8kMIT1.0.3

A Stylish reporter for HTMLHint

htmlhint, gulp-htmlhint, jshint-stylish, reporter, htmlhint-reporter, formatter, format, lint, validate, stylish, elegant, pretty

readme

htmlhint-stylish Build Status

Stylish reporter for HTMLHint

Uses jshint-stylish to do the actual reporting:

Compared to the default reporter:

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