Package Exports
- @hint/parser-html
- @hint/parser-html/dist/src/parser.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@hint/parser-html) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
HTML (@hint/parser-html
)
The HTML
parser is built on top of jsdom
so hints can
analyze HTML
files.
Note: This parser is currently only needed if using the local
connector. Other connectors provide their own DOM to
generate events instead.
This package is installed automatically by webhint:
npm install hint --save-dev
To use it, activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": [...],
"hints": {
...
},
"parsers": ["html"],
...
}
Note: The recommended way of running webhint is as a devDependency
of
your project.
Events emitted
This parser
emits the event parse:🔚:html
of type HTMLParse
which has the following information:
document
: anHTMLDocument
object containing the parsed document.html
: 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.