Socket
Socket
Sign inDemoInstall

gulp-eslint

Package Overview
Dependencies
Maintainers
2
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-eslint - npm Package Compare versions

Comparing version 0.8.0 to 0.9.0

4

CHANGELOG.md
# Changelog
## 0.9.0
* Bump eslint dependency to 0.19.x
## 0.8.0

@@ -4,0 +8,0 @@

16

package.json
{
"name": "gulp-eslint",
"version": "0.8.0",
"version": "0.9.0",
"description": "A gulp plugin for processing files with eslint",

@@ -51,17 +51,17 @@ "repository": "adametry/gulp-eslint",

"bufferstreams": "1.0.1",
"eslint": "^0.18.0",
"eslint": "^0.19.0",
"gulp-util": "^3.0.4",
"object-assign": "^2.0.0",
"optional": "^0.1.3",
"through2": "^0.6.3"
"through2": "^0.6.5"
},
"devDependencies": {
"babel-eslint": "^2.0.0",
"babel-eslint": "^2.0.2",
"gulp": "^3.8.11",
"istanbul": "^0.3.7",
"istanbul": "^0.3.13",
"istanbul-coveralls": "^1.0.2",
"jscs": "^1.11.3",
"mocha": "^2.2.1",
"jscs": "^1.12.0",
"mocha": "^2.2.4",
"should": "^5.2.0",
"through": "^2.3.6",
"through": "^2.3.7",
"vinyl": "^0.4.6"

@@ -68,0 +68,0 @@ },

@@ -20,7 +20,11 @@ # gulp-eslint [![Build Status](https://travis-ci.org/adametry/gulp-eslint.svg)](https://travis-ci.org/adametry/gulp-eslint) [![Coverage Status](https://img.shields.io/coveralls/adametry/gulp-eslint.svg)](https://coveralls.io/r/adametry/gulp-eslint)

gulp.task('lint', function () {
// Note: To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failOnError last.
return gulp.src(['js/**/*.js'])
// eslint() attaches the lint output to the eslint property
// of the file object so it can be used by other modules.
.pipe(eslint())
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failOnError last.
.pipe(eslint.failOnError());

@@ -27,0 +31,0 @@ });

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc