@hint/formatter-json

webhint formatter that prints the JSON object of the results

Usage no npm install needed!

<script type="module">
  import hintFormatterJson from 'https://cdn.skypack.dev/@hint/formatter-json';
</script>

README

JSON (@hint/formatter-json)

The json formatter does a JSON.stringify() of the results. Output is not very user friendly, but it can be useful when using it as input for other tools:

Example output for the json formatter

To use it you will have to install it via npm:

npm install @hint/formatter-json --save-dev

Note: The recommended way of running webhint is as a devDependency of your project.

And then activate it via the .hintrc configuration file:

{
    "connector": {...},
    "formatters": ["json"],
    "hints": {
        ...
    },
    ...
}