Deprecated as it's now the default reporter in ESLint
Stylish formatter (reporter) for ESLint
Compared to the default formatter:
$ npm install --save-dev eslint-stylish
Use it with:
eslint --format node_modules/eslint-stylish/stylish.js file.js
grunt.initConfig({
eslint: {
options: {
format: require('eslint-stylish')
},
target: ['file.js']
}
});
grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('default', ['eslint']);