Skip to content

Commit

Permalink
Fix new lint rules, for the sake of the project
Browse files Browse the repository at this point in the history
  • Loading branch information
Shudrum committed Mar 16, 2020
1 parent 1760a29 commit 04f0cee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/nodegate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const cors = require('cors');
const express = require('express');
const request = require('request');
const { execute } = require('../entities/route');
const { getConfiguration } = require('../services/configuration');
const { getConfiguration } = require('./configuration');

const buildExpressApp = () => {
const app = express();
Expand Down
2 changes: 1 addition & 1 deletion services/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

const { get, merge } = require('lodash');
const requestNative = require('request-promise-native');
const { getConfiguration } = require('../services/configuration');
const { getConfiguration } = require('./configuration');

const project = (container, value) => {
if (typeof value === 'object' && !Array.isArray(value)) {
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

const nock = require('nock');
const request = require('supertest');
const nodegate = require('../');
const nodegate = require('..');

describe('index', () => {
it('should export the workers', () => {
Expand Down

0 comments on commit 04f0cee

Please sign in to comment.