0.1.51 • Published 11 years ago

cool-reporter v0.1.51

Weekly downloads
13
License
MIT
Repository
github
Last release
11 years ago

cool-reporter

Cool reporter for JSHint

screenshot

Install

$ npm install --save-dev cool-reporter

Usage

JSHint CLI

$ jshint --reporter node_modules/cool-reporter/reporter.js file.js

gulp-jshint

gulp.task('default', function () {
	gulp.src(['file.js'])
		.pipe(jshint('.jshintrc'))
		.pipe(jshint.reporter('cool-reporter'));
});

grunt-contrib-jshint

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

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

License

MIT © Pedro Jesús Parra Cantero

0.1.51

11 years ago

0.1.5

11 years ago

0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago