Format eslint results with multiple formatters
npm install eslint-formatter-multiple-asyncA meta formatter for eslint that will output to multiple formats
npm install --save-dev @magarcia/eslint-formatter-multiple
yarn add --dev @magarcia/eslint-formatter-multiple
Update your package.json to have a new section:
```
"eslint-formatter-multiple": {
"formatters": [
{
"name": "stylish",
"output": "console"
},
{
"name": "checkstyle",
"output": "file",
"path": "eslint-checkstyle.xml"
}
]
}
Finally, add the --format multiple when calling the eslint` command.