Skip to content

hongymagic/jshint-teamcity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

JSHint TeamCity Reporter which group by files using TeamCity Test Suites

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •