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()); });