From f76a3ac1ab8e4f202f637203a777a40e6be6a45c Mon Sep 17 00:00:00 2001 From: greenkeeperio-bot Date: Wed, 4 Nov 2015 21:24:12 -0800 Subject: [PATCH 1/2] chore(package): update gulp-eslint to version 1.0.0 http://greenkeeper.io/ --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 281b6dad06..5da10fc78a 100644 --- a/package.json +++ b/package.json @@ -61,8 +61,8 @@ "frameguard": "^0.2.2", "github-api": "~0.10.6", "gulp": "~3.9.0", - "gulp-eslint": "~1.0.0", "gulp-inject": "~3.0.0", + "gulp-eslint": "~1.0.0", "gulp-jsonlint": "^1.1.0", "gulp-less": "^3.0.3", "gulp-minify-css": "~1.2.1", From 8087db11f0f2b83f47c8e28f4fcf8ac3d0907f39 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Fri, 6 Nov 2015 21:12:14 -0800 Subject: [PATCH 2/2] Update gulp lint task --- gulpfile.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4ae0d93d23..1730d0971a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -178,7 +178,14 @@ gulp.task('sync', syncDepenedents, function() { }); gulp.task('lint-js', function() { - return gulp.src(['public/js/lib/**/*']) + return gulp.src([ + 'common/**/*.js', + 'common/**/*.jsx', + 'client/**/*.js', + 'client/**/*.jsx', + 'server/**/*.js', + 'config/**/*.js' + ]) .pipe(eslint()) .pipe(eslint.format()); });