Skip to content

Commit

Permalink
Update gulp lint task
Browse files Browse the repository at this point in the history
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Nov 7, 2015
1 parent f76a3ac commit 8087db1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
});
Expand Down

0 comments on commit 8087db1

Please sign in to comment.