eslint-formatter-multiple-async
v2.0.0
Published
Format eslint results with multiple formatters
Downloads
3,605
Maintainers
Readme
eslint-formatter-multiple
A meta formatter for eslint that will output to multiple formats
Install
npm install --save-dev @magarcia/eslint-formatter-multiple
yarn add --dev @magarcia/eslint-formatter-multiple
Usage
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.