webhint parser needed to analyze HTML files
npm install @hint/parser-html@hint/parser-html)The HTML parser is built on top of [jsdom][jsdom] so hints can
analyze HTML files.
Note: This parser is currently only needed if using the local
[connector][connectors]. Other connectors provide their own DOM to
generate events instead.
This package is installed automatically by webhint:
``bash`
npm install hint --save-dev
To use it, activate it via the [.hintrc][hintrc] configuration file:
`json`
{
"connector": {...},
"formatters": [...],
"hints": {
...
},
"parsers": ["html"],
...
}
Note: The recommended way of running webhint is as a devDependency of
your project.
This parser emits the event parse::end::html of type HTMLParse
which has the following information:
* document: an HTMLDocument object containing thehtml
parsed document.
* : a string containing the raw HTML source code.resource
* : the parsed resource.
And the event parse::start::html of type Event which has the
following information:
* resource`: the resource that is going to be parsed.
[connectors]: https://webhint.io/docs/user-guide/concepts/connectors/
[events]: https://webhint.io/docs/contributor-guide/getting-started/events/
[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/
[jsdom]: https://github.com/jsdom/jsdom