@hint/formatter-excel
v3.1.36
Published
webhint formatter that outputs the result in an Excel file (xlsx)
Downloads
66
Readme
Excel (@hint/formatter-excel
)
The excel
formatter outputs the results in an Excel file (xlsx
),
each resource in its sheet:
The file will be created in the folder where webhint
is called from
(i.e.: process.cwd()
).
To use it you will have to install it via npm
:
npm install @hint/formatter-excel --save-dev
Note: The recommended way of running webhint is as a devDependency
of
your project.
And then activate it via the .hintrc
configuration file:
{
"connector": {...},
"formatters": ["excel"],
"hints": {
...
},
...
}