Skip to content

Latest commit

History

History
41 lines (30 loc) 路 1022 Bytes

README.md

File metadata and controls

41 lines (30 loc) 路 1022 Bytes

Excel formatter (@hint/formatter-excel)

The excel formatter outputs the results in an Excel file (xlsx), each resource in its sheet:

Example output for the summary sheet of the excel formatter

Example output for one of the details sheet of the excel formatter

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

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": "excel",
    "hints": {
        ...
    },
    ...
}