eslint-formatter-multiple
Version:
Format eslint results with multiple formatters
30 lines (22 loc) • 563 B
Markdown
# eslint-formatter-multiple
A meta formatter for eslint that will output to multiple formats
## Install
`npm install --save-dev 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 eslint-formatter-multiple` when calling the `eslint` command.