1.1.1 • Published 10 years ago

jshint-teamcity v1.1.1

Weekly downloads
605
License
MIT
Repository
github
Last release
10 years ago

jshint-teamcity

JSHint TeamCity Reporter which group by files using TeamCity Test Suites

Install

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

Usage

Use it with:

JSHint CLI

jshint --reporter node_modules/jshint-teamcity/teamcity.js file.js

gulp-jshint

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

grunt-contrib-jshint

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

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

Screenshot

License

Thanks to jshint-stylish and jshint-teamcity-reporter.

MIT © David Hong

1.1.1

10 years ago

1.1.0

10 years ago

1.0.6

12 years ago

1.0.5

12 years ago

1.0.4

12 years ago

1.0.2

12 years ago

1.0.1

12 years ago

1.0.0

12 years ago