Skip to content

Commit

Permalink
style: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JackuB authored and gjvis committed Oct 11, 2016
1 parent 596960c commit bc58555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/config/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const config = require('snyk-config')(__dirname + '/..');

const { camelify, expand } = require('./utils');
const { camelify } = require('./utils');

// allow the user to define their own configuration
const dotenv = require('dotenv');
Expand Down
2 changes: 1 addition & 1 deletion lib/webserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const stripEmptyRequestBody = (req, res, next) => {
delete req.body;
}
next();
}
};

function main({ key = null, cert = null, port = 7341 } = {}, altPort = null) {
const http = (!key && !cert); // no https if there's no certs
Expand Down

0 comments on commit bc58555

Please sign in to comment.