0.1.51 • Published 9 years ago

cool-reporter v0.1.51

Weekly downloads
13
License
MIT
Repository
github
Last release
9 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

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago