Webhint - JSON Object Formatter
I recently published a new [npm package](webhint-formatter-json-object - npm (npmjs.com)) to add support for a new formatter for webhint, a popular open source website analysis tool.
This package aims to improve upon the existing [JSONformatter](https://webhint.io/docs/user-guide/formatters/formatter-json/), which outputs problems in a non-JSON standard format. With `webhint-formatter-json-object` it is now possible to save webhint feedback to file which can be saved and queried later.
To install, run this command:
npm i webhint-formatter-json-object --save-dev
Then, add the formatter to your .hintrc
like below:
{
"connector": {...},
"formatters": ["webhint-formatter-json-object"],
"hints": {
...
},
...
}
Release [v0.1.1](Release v0.1.0 · burgwyn/webhint-formatter-json-object (github.com))
GitHub Repository - burgwyn/webhint-formatter-json-object: A JSON object formatter for webhint (github.com)