Socket
Socket
Sign inDemoInstall

jshint-teamcity

Package Overview
Dependencies
1
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

jshint-teamcity

JSHint TeamCity Reporter which group by files using TeamCity Test Suite


Version published
Maintainers
1
Weekly downloads
85
decreased by-18.27%

Weekly downloads

Readme

Source

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

Keywords

FAQs

Last updated on 16 Nov 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc