slikts / eslint-formatter-multiple

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

License:MIT License


Languages

Language:JavaScript 100.0%