UNPKG

558 BMarkdownView Raw
1standard-reporter
2=================
3
4Allows you to pipe uber/standard or feross/standard output and get different
5reporting formats.
6
7Usage
8-----
9
10```
11$ standard | standard-reporter
12$ standard | standard-reporter --stylish
13$ standard | standard-reporter --json > lint.json
14$ standard | standard-reporter --checkstyle > lint.xml
15```
16
17If you put standard in verbose mode, the results will also include the lint rule
18name. If you're using an older version of standard that doesn't print lint
19errors on stdout, you will need to redirect stderr output to stdout.