A Stylish reporter for HTMLHint
npm install htmlhint-stylish> Stylish reporter for HTMLHint
Uses jshint-stylish to do the actual reporting:

Compared to the default reporter:

```
$ npm install --save-dev htmlhint-stylish
`js
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)
``
MIT © Rahul Doshi