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 
Stylish reporter for JSHint
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