Fix lint errors

This commit is contained in:
Brandon Keepers 2017-03-31 17:38:25 -07:00
parent 37140a285b
commit d7e43aad7b
No known key found for this signature in database
GPG Key ID: F9533396D5FACBF6
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
const cacheManager = require('cache-manager');
const createWebhook = require('github-webhook-handler');
const createIntegration = require('github-integration');
const Raven = require('raven');
const createRobot = require('./lib/robot');
const createServer = require('./lib/server');
const Raven = require('raven');
module.exports = options => {
const cache = cacheManager.caching({
@ -20,7 +20,7 @@ module.exports = options => {
const server = createServer(webhook);
const robot = createRobot(integration, webhook, cache);
if(process.env.SENTRY_URL) {
if (process.env.SENTRY_URL) {
Raven.config(process.env.SENTRY_URL).install();
}