Socket
Socket
Sign inDemoInstall

jshint-teamcity

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "jshint-teamcity",
"version": "1.0.0",
"version": "1.0.1",
"description": "JSHint TeamCity Reporter which group by files using TeamCity Test Suite",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,4 +0,47 @@

jshint-teamcity
===============
## jshint-teamcity
JSHint TeamCity Reporter which group by files using TeamCity Test Suites
### Install
Install with npm: `npm install --save-dev jshint-teamcity`
### Usage
Use it with:
#### JSHint CLI
```
jshint --reporter node_modules/jshint-teamcity/teamcity.js file.js
```
#### gulp-jshint
```
gulp.task('default', function () {
gulp.src(['file.js'])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-teamcity'));
});
```
#### grunt-contrib-jshint
```
grunt.initConfig({
jshint: {
options: {
reporter: require('jshint-stylish')
},
target: ['file.js']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
```
### License
MIT © David Hong
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc