eslint-stats

1.0.1 • Public • Published

Coverage Status Build Status

Statistic Reporter for ESLint.

Analyses the files for error frequency, rather than location. This is helpful when introducing ESLint to an existing project.

screenshot

Install

npm install --save-dev eslint-stats

Getting Started

Use it with grunt:

...
  eslint: {
    options: {
      format: require('eslint-stats').byError,
      src: [...]
    },
...

or use it directly with ESLint:

$ eslint --format node_modules/eslint-stats/byError.js

Available Reporters:

byError

Shows the eslint report, aggragated by errors, without separation into specific files. Rules with warnings are not displayed

byWarning

Shows the eslint report, aggragated by warnings, without separation into specific files. Rules with errors are not displayed.

byErrorAndWarning

Shows the eslint report, aggragated by errors and warnings, without separation into specific files. Errors are red, and warnings are yellow.

byErrorAndWarningStacked

Shows the eslint report, aggragated by errors and warnings, without separation into specific files. Errors are red, and warnings are yellow. If any rule is an error in one file and a warning in another, results show up stacked.

byFolder

Shows the eslint report, aggragated by errors and warnings, separated into folders. Errors are red, and warnings are yellow.

Dependencies (2)

Dev Dependencies (6)

Package Sidebar

Install

npm i eslint-stats

Weekly Downloads

28,677

Version

1.0.1

License

MIT

Unpacked Size

31.7 kB

Total Files

27

Last publish

Collaborators

  • ganimomer