Skip to content

Commit 0df254c

Browse files
committed
Re-lint after the rebase
1 parent 2ce2601 commit 0df254c

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

lib/certificates.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ exports.generateRSAKeyPair = function (callback) {
128128

129129
exports.createSSHKeyPair = function (callback) {
130130
exports.generateRSAKeyPair((error, keypair) => {
131-
132131
if (error) {
133132
callback(error);
134133
return;

lib/db.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function load () {
2626
store = JSON.parse(json);
2727
}
2828

29-
3029
// Save the datastore to disk asynchronously. TODO gzip?
3130

3231
exports.save = function () {

lib/streams.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ exports.get = function (object, key) {
2727
return passthrough;
2828
};
2929

30-
3130
// Read a stream into `object[key]`.
3231

3332
exports.set = function (object, key, readable) {
@@ -52,12 +51,12 @@ exports.set = function (object, key, readable) {
5251
log('[fail] could not read the stream', error);
5352
}
5453

55-
remove(object, key);
54+
exports.remove(object, key);
5655
});
5756

5857
// Clean up when the stream ends.
5958
readable.on('end', function () {
60-
remove(object, key);
59+
exports.remove(object, key);
6160
});
6261
};
6362

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"lint-fix": "eslint -c .eslintrc-node.js *.js api/ lib/ --fix && eslint -c .eslintrc-browser.js static/ --fix"
3030
},
3131
"dependencies": {
32-
"camp": "~17.2.0",
32+
"camp": "^17.2.0",
3333
"dockerode": "~2.5.0",
3434
"email-login": "~1.1.0",
3535
"fast-json-patch": "~2.0.3",

0 commit comments

Comments
 (0)