Skip to content

Commit

Permalink
Fix /packages dir cs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickocoffeyo committed Feb 1, 2015
1 parent a5af16f commit 1821502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ var gulp = require('gulp'),
gulp.task('cs', function () {
return gulp.src([
'src/**/*.js',
'!src/.meteor/**/*.js',
'!src/packages/*/**.js',
'gulpfile.js'
'!src/.meteor/**/*.js',
'!src/packages/**/*.js',
])
.pipe(jshint())
.pipe(jshint.reporter('default'))
Expand Down

0 comments on commit 1821502

Please sign in to comment.