Skip to content

Commit dc8c182

Browse files
committed
Build: Lint all files
1 parent cf081d3 commit dc8c182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/set-task.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function set(name, fn) {
99
assert(typeof name === 'string', 'Task name must be a string');
1010
assert(typeof fn === 'function', 'Task function must be specified');
1111

12-
function taskWrapper(){
12+
function taskWrapper() {
1313
return fn.apply(this, arguments);
1414
}
1515

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lib"
2020
],
2121
"scripts": {
22-
"lint": "eslint . && jscs index.js test/",
22+
"lint": "eslint . && jscs index.js lib/ test/",
2323
"pretest": "npm run lint",
2424
"test": "mocha --async-only",
2525
"cover": "istanbul cover _mocha --report lcovonly",

0 commit comments

Comments
 (0)