Skip to content

Commit

Permalink
fix(control): no lint on task configs
Browse files Browse the repository at this point in the history
  • Loading branch information
balthazar committed Jan 14, 2016
1 parent bdf07d3 commit 4d36017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/tasks/control.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = function (done) {
async.series([
control(['client/**/*.js', '!client/bower_components/**'], getConfig('./client/.jshintrc')),
control(['server/**/*.js'], getConfig('./server/.jshintrc')),
control(['gulpfile.js', 'tasks/**/*.js'], getConfig('./server/.jshintrc'))
control(['gulpfile.js', 'tasks/*.js'], getConfig('./server/.jshintrc'))
], done);

};

0 comments on commit 4d36017

Please sign in to comment.