Fix(lint): correct lint errors

This commit is contained in:
Berkeley Martinez
2016-06-23 16:57:26 -07:00
parent b434ef6e43
commit cc0543d5df
11 changed files with 54 additions and 143 deletions

View File

@@ -16,7 +16,7 @@ var onConnect = function() {
app.start();
};
var timeoutHandler = setTimeout(function() {
timeoutHandler = setTimeout(function() {
var message =
'db did not connect after ' +
(Date.now() - startTime) +

View File

@@ -1,4 +1,6 @@
export default [
'auth',
'services'
].reduce((throughs, route) => (throughs[route] = true, throughs), {});
].reduce((throughs, route) => {
throughs[route] = true; return throughs;
}, {});