Skip to content

Commit

Permalink
Merge pull request #1943 from request/greenkeeper-eslint-1.10.3
Browse files Browse the repository at this point in the history
Update eslint to version 1.10.3 πŸš€
  • Loading branch information
simov committed Dec 3, 2015
2 parents c4d3c9c + 649ae83 commit 63946df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -56,7 +56,7 @@
"buffer-equal": "^0.0.1",
"codecov.io": "^0.1.6",
"coveralls": "^2.11.4",
"eslint": "1.10.1",
"eslint": "1.10.3",
"function-bind": "^1.0.2",
"istanbul": "^0.4.0",
"karma-browserify": "^4.4.0",
Expand Down
4 changes: 3 additions & 1 deletion tests/server.js
Expand Up @@ -51,7 +51,9 @@ exports.createSSLServer = function(port, opts) {
, 'cert': path.join(__dirname, 'ssl', 'test.crt')
}
if (opts) {
for (i in opts) options[i] = opts[i]
for (i in opts) {
options[i] = opts[i]
}
}

for (i in options) {
Expand Down

0 comments on commit 63946df

Please sign in to comment.