From 9dec44a326d6e9c4cdd30c1faefeeb84b1558043 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Sun, 11 Dec 2016 01:38:08 +0100 Subject: [PATCH] [chore] Speed up lint by avoiding '**/*.js' matching pattern (#1043) --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index fef735230..56c899782 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -55,10 +55,10 @@ gulp.task('test-zuul', testZuul); gulp.task('lint', function () { return gulp.src([ - '**/*.js', - '!node_modules/**', - '!coverage/**', - '!dist/**' + '*.js', + 'lib/**/*.js', + 'test/**/*.js', + 'support/**/*.js' ]) .pipe(eslint()) .pipe(eslint.format())