JSPM

  • Created
  • Published
  • Downloads 18529
  • Score
    100M100P100Q148882F
  • License Apache-2.0

A hint formatter that outputs the issues in an HTML file.

Package Exports

  • @hint/formatter-html

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/formatter-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/formatter-html)

The html formatter outputs the result in a HTML file.

Example output for the html formatter

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