Skip to content

Commit

Permalink
[chore] Speed up lint by avoiding '**/*.js' matching pattern (#1043)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Dec 11, 2016
1 parent 8f18970 commit 9dec44a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 9dec44a

Please sign in to comment.