JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 68706
  • Score
    100M100P100Q160668F
  • License MIT

Stylish reporter for JSHint

Package Exports

  • jshint-stylish
  • jshint-stylish/stylish

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jshint-stylish) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jshint-stylish Build Status

Stylish reporter for JSHint

screenshot

Compared to the default reporter.

Install

Install with npm: npm install --save-dev jshint-stylish

Getting started

Use it with:

JSHint CLI

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

grunt-contrib-jshint

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

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

License

MIT © Sindre Sorhus