jshint-stylish-cool

Stylish reporter for JSHint

Usage no npm install needed!

<script type="module">
  import jshintStylishCool from 'https://cdn.skypack.dev/jshint-stylish-cool';
</script>

README

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