HTML (@hint/formatter-html
)
The html
formatter outputs the result in a HTML file.
A new folder hint-report
will be created with the results.
To use it you will have to install it via npm
:
npm install @hint/formatter-html
Note: You can make npm
install it as a devDependency
using the
--save-dev
parameter, or to install it globally, you can use the
-g
parameter. For other options see npm
's
documentation.
And then activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": "html",
"hints": {
...
},
...
}