Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jshint-more-stylish

catdad33MIT1.0.1

Stylish reporter for JSHint

jshint, reporter, formatter, format, lint, validate, stylish, elegant, pretty

readme

jshint-more-stylish

Build Downloads Version

Compared to the default reporter:

Install

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

Usage

JSHint CLI

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

gulp-jshint

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

grunt-contrib-jshint

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

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);