A package of custom formatters that show aggregated stats of eslint errors
npm install eslint-stats

#Statistic Reporter for ESLint.
Analyses the files for error frequency, rather than location. This is helpful when introducing ESLint to an existing project.
js
npm install --save-dev eslint-stats
`
Getting Started
Use it with grunt:`js
...
eslint: {
options: {
format: require('eslint-stats').byError,
src: [...]
},
...
`or use it directly with ESLint:
`bash
$ eslint --format node_modules/eslint-stats/byError.js
``