0.1.5 • Published 10 years ago

jshint-stylish-lane v0.1.5

Weekly downloads
1
License
-
Repository
-
Last release
10 years ago

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-contrib-jshint

grunt.initConfig({
	jshint: {
		options: {
			reporter: require('jshint-stylish')
		},
		target: ['file.js']
	}
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);