Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patricklafrance/jshint-visual-studio
JSHint Visual Studio reporter
https://github.com/patricklafrance/jshint-visual-studio
Last synced: about 1 month ago
JSON representation
JSHint Visual Studio reporter
- Host: GitHub
- URL: https://github.com/patricklafrance/jshint-visual-studio
- Owner: patricklafrance
- License: mit
- Created: 2015-03-23T03:03:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-31T07:45:17.000Z (over 8 years ago)
- Last Synced: 2024-10-04T02:54:11.495Z (about 2 months ago)
- Language: JavaScript
- Size: 230 KB
- Stars: 1
- Watchers: 1
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## jshint-visual-studio
JSHint Visual Studio reporter
### Install
Install with npm: `npm install --save-dev jshint-visual-studio`
### Usage
Use it with:
#### JSHint CLI
```
jshint --reporter node_modules/jshint-visual-studio/visual-studio.js file.js
```#### gulp-jshint
```
gulp.task('default', function () {
gulp.src(["file.js"])
.pipe(jshint(".jshintrc"))
.pipe(jshint.reporter("jshint-visual-studio"));
});
```### License
Thanks to [jshint-teamcity](https://www.npmjs.com/package/jshint-teamcity).
MIT © Patrick Lafrance