Skip to content

Commit

Permalink
Fix JSHint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Dec 8, 2014
1 parent 502d953 commit b5a051f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .jshintignore
@@ -0,0 +1 @@
node_modules
2 changes: 1 addition & 1 deletion modules/Client.js
Expand Up @@ -99,7 +99,7 @@ function Client(options) {
PROPERTIES.forEach(function (propertyName) {
Object.defineProperty(this, propertyName, {
get: function () {
return redisClient[propertyName]
return redisClient[propertyName];
}
});
}, this);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -4,7 +4,7 @@
"description": "A small, promise-based Redis client",
"main": "modules/index.js",
"scripts": {
"test": "mocha modules/**/__tests__/*-test.js"
"test": "jshint . && mocha modules/**/__tests__/*-test.js"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b5a051f

Please sign in to comment.