Stylish reporter for JSHint
Compared to the default reporter:
Install with npm: npm install --save-dev jshint-stylish-lane
Use it with:
jshint --reporter node_modules/jshint-stylish/stylish.js file.js
grunt.initConfig({
jshint: {
options: {
reporter: require('jshint-stylish')
},
target: ['file.js']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);