Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mollerse/jshint-growl-reporter
Growl reporter for JSHint
https://github.com/mollerse/jshint-growl-reporter
Last synced: about 1 month ago
JSON representation
Growl reporter for JSHint
- Host: GitHub
- URL: https://github.com/mollerse/jshint-growl-reporter
- Owner: mollerse
- License: mit
- Created: 2014-02-25T17:58:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T09:11:50.000Z (over 9 years ago)
- Last Synced: 2024-11-07T11:12:18.246Z (about 2 months ago)
- Language: JavaScript
- Size: 122 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# jshint-growl-reporter
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][depstat-image]][depstat-url]> Growl reporter for JSHint
Reports summary when there are multiple errors, shows specific error when there is only one error.
## Install
Install with [npm](https://npmjs.org/package/jshint-growl-reporter): `npm install -D jshint-growl-reporter`
## Usage
Use it with:
### JSHint CLI
```
jshint --reporter jshint-growl-reporter.js file.js
```
### [gulp-jshint](https://github.com/wearefractal/gulp-jshint)```js
gulp.task('default', function () {
gulp.src(['file.js'])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-growl-reporter'));
});
```### [grunt-contrib-jshint](https://github.com/gruntjs/grunt-contrib-jshint)
```js
grunt.initConfig({
jshint: {
options: {
reporter: require('jshint-growl-reporter')
},
target: ['file.js']
}
});grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
```## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)
[npm-url]: https://npmjs.org/package/jshint-growl-reporter
[npm-image]: https://badge.fury.io/js/jshint-growl-reporter.png[travis-url]: http://travis-ci.org/mollerse/jshint-growl-reporter
[travis-image]: https://secure.travis-ci.org/mollerse/jshint-growl-reporter.png?branch=master[depstat-url]: https://david-dm.org/mollerse/jshint-growl-reporter
[depstat-image]: https://david-dm.org/mollerse/jshint-growl-reporter.png?theme=shields.io