Skip to content

Commit

Permalink
chore(jscs): lint entire project, not just gulpefile
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-bansil committed Aug 8, 2016
1 parent 30a1f7a commit 638eb27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ gulp.task('eslint', () => {
});

function jscsTask(fix) {
var ret = gulp.src('gulpfile.js')
var ret = gulp.src(srcs)
.pipe(jscs({ fix: fix }))
.pipe(jscs.reporter())
.pipe(jscs.reporter('fail'));
Expand Down

0 comments on commit 638eb27

Please sign in to comment.