Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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