Package Exports
- @hint/formatter-codeframe
- @hint/formatter-codeframe/dist/src/formatter.js
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-codeframe) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Codeframe (@hint/formatter-codeframe)
The codeframe formatter shows the results in table format indicating
the resource, line and column as well as the part of the code where the
error was found (if applicable):

To use it you will have to install it via npm:
npm install @hint/formatter-codeframe --save-devNote: The recommended way of running webhint is as a devDependency of
your project.
And then activate it via the .hintrc configuration file:
{
"connector": {...},
"formatters": ["codeframe"],
"hints": {
...
},
...
}