@hint/formatter-excel
Version:
webhint formatter that outputs the result in an Excel file (xlsx)
40 lines (28 loc) • 882 B
Markdown
# 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`:
```bash
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`][hintrc] configuration file:
```json
{
"connector": {...},
"formatters": ["excel"],
"hints": {
...
},
...
}
```
<!-- Link labels: -->
[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/