Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 946 Bytes

readme.md

File metadata and controls

46 lines (28 loc) · 946 Bytes

jshint-stylish Build Status

Stylish reporter for JSHint

screenshot

Compared to the default reporter:

default reporter

Install

Install with npm: npm install --save-dev jshint-stylish

Getting started

Use it with:

JSHint CLI

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']);

License

MIT © Sindre Sorhus