Fix ESLint errors

This commit is contained in:
Peter deHaan 2017-06-09 10:44:12 -07:00
parent f0b4bb7341
commit 1dbda38995
No known key found for this signature in database
GPG key ID: F0FC6C01C6305097
12 changed files with 151 additions and 156 deletions

View file

@ -1,6 +1,6 @@
const convict = require('convict');
let conf = convict({
const conf = convict({
bitly_key: {
format: String,
default: 'localhost',
@ -32,7 +32,7 @@ let conf = convict({
// Perform validation
conf.validate({ allowed: 'strict' });
let props = conf.getProperties();
const props = conf.getProperties();
module.exports = props;
module.exports.notLocalHost =