Skip to content

bezoerb/gulp-htmlhint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 18, 2015
8a2b475 · Jul 18, 2015

History

63 Commits
Jul 17, 2015
Jan 14, 2014
Jan 14, 2014
Jan 14, 2014
Mar 24, 2015
Jan 19, 2014
Mar 24, 2015
Jul 18, 2015
Jan 14, 2014
Jul 17, 2015
Jul 17, 2015
Jul 18, 2015

Repository files navigation

gulp-htmlhint NPM version Build Status Dependency Status

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())

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 there 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,
}
var htmlhint = require("gulp-htmlhint");

gulp.src("./src/*.html")
	.pipe(htmlhint('.htmlhintrc'))

Reporters

Default reporter

var htmlhint = require("gulp-htmlhint");

gulp.src("./src/*.html")
	.pipe(htmlhint())
	.pipe(htmlhint.reporter())

Fail reporter

Use this reporter if you want your task to fail in case of a HTMLHint Error. It also prints a summary of all errors in the first bad file.

var htmlhint = require("gulp-htmlhint");

gulp.src("./src/*.html")
	.pipe(htmlhint())
	.pipe(htmlhint.failReporter())

Optionally, you can pass the htmlhint.failReporter a config object

Plugin options:

  • supress

    When set to true, it does not display file errors on failure. Use in conjunction with the default and/or custom reporter(s). Prevents duplication of error messages when used along with another reporter.

    var htmlhint = require("gulp-htmlhint");
    
    gulp.src("./src/*.html")
        .pipe(htmlhint())
        .pipe(htmlhint.reporter("htmlhint-stylish"))
        .pipe(htmlhint.failReporter({ suppress: true })

License

MIT License