jshint-teamcity

1.1.1 • Public • Published

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

/jshint-teamcity/

    Package Sidebar

    Install

    npm i jshint-teamcity

    Weekly Downloads

    196

    Version

    1.1.1

    License

    MIT

    Last publish

    Collaborators

    • hongymagic