gulp-htmlhint
htmlhint wrapper for gulp to validate your HTML
Usage
First, install gulp-htmlhint
as a development dependency:
npm install --save-dev gulp-htmlhint
Then, add it to your gulpfile.js
:
var htmlhint = require("gulp-htmlhint");
gulp.src("./src/*.html")
.pipe(htmlhint())
.pipe(htmlhint.reporter());
API
htmlhint(options)
See all rules here: https://github.com/yaniswang/HTMLHint/wiki/Rules
If options is empty, task use standard options.
options.htmlhintrc
Type: String
Default value: null
If this filename is specified, options and globals defined therein will be used. Task and target options override the options within the htmlhintrc
file. The htmlhintrc
file must be valid JSON and looks something like this:
{
"tag-pair": true,
}
License
MIT License