Grunt task for HTML linter: htmlcs.
npm install grunt-htmlcs
Add to the Grunt configuration:
htmlcs: {
all: {
src: ['src/**/*.html']
}
}
Load the task:
grunt.loadNpmTasks('grunt-htmlcs');
And run it:
grunt htmlcs:all
See the simple full example.
Configuration of the htmlcs rules is done by adding a file .htmlcsrc
next to your Gruntfile.
The config file indicates which rules should be run with which options.
See default list to get started.