Skip to content

Commit

Permalink
Build: Lint all files
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Jun 28, 2016
1 parent cf081d3 commit dc8c182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/set-task.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function set(name, fn) {
assert(typeof name === 'string', 'Task name must be a string');
assert(typeof fn === 'function', 'Task function must be specified');

function taskWrapper(){
function taskWrapper() {
return fn.apply(this, arguments);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lib"
],
"scripts": {
"lint": "eslint . && jscs index.js test/",
"lint": "eslint . && jscs index.js lib/ test/",
"pretest": "npm run lint",
"test": "mocha --async-only",
"cover": "istanbul cover _mocha --report lcovonly",
Expand Down

0 comments on commit dc8c182

Please sign in to comment.