jshint-teamcity
Advanced tools
Weekly downloads
Readme
JSHint TeamCity Reporter which group by files using TeamCity Test Suites
Install with npm: npm install --save-dev jshint-teamcity
Use it with:
jshint --reporter node_modules/jshint-teamcity/teamcity.js file.js
gulp.task('default', function () {
gulp.src(['file.js'])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-teamcity'));
});
grunt.initConfig({
jshint: {
options: {
reporter: require('jshint-teamcity')
},
target: ['file.js']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
Thanks to jshint-stylish and jshint-teamcity-reporter.
MIT © David Hong
FAQs
JSHint TeamCity Reporter which group by files using TeamCity Test Suite
The npm package jshint-teamcity receives a total of 557 weekly downloads. As such, jshint-teamcity popularity was classified as not popular.
We found that jshint-teamcity demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.