jshint-stylish-cool

2.0.2 • Public • Published

jshint-stylish-cool Build Status

Copy from Stylish reporter for JSHint

Compared to the default reporter:

Install

$ npm install --save-dev jshint-stylish-cool

Usage

JSHint CLI

$ jshint --reporter=node_modules/jshint-stylish file.js

gulp-jshint

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

grunt-contrib-jshint

grunt.initConfig({
    jshint: {
        options: {
            reporter: require('jshint-stylish')
        },
        target: ['file.js']
    }
});
 
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);

License

MIT © xiaobaicaistring

Package Sidebar

Install

npm i jshint-stylish-cool

Weekly Downloads

1

Version

2.0.2

License

MIT

Last publish

Collaborators

  • xiaobaiciastring