Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
style(linting): fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
didimitrie committed Dec 4, 2019
1 parent 36331df commit 1a32e37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require( 'fs' )
const path = require( 'path' )
const winston = require( './config/logger' )
const URL = require( 'url').URL
const URL = require( 'url' ).URL

const isDirectory = source => fs.lstatSync( source ).isDirectory( )
const getDirectories = source => fs.readdirSync( source ).map( name => path.join( source, name ) ).filter( isDirectory )
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const mongoose = require( 'mongoose' ).set( 'debug', false )
const expressWinston = require( 'express-winston' )
const redis = require( 'redis' )
const logger = require( './config/logger' )
const URL = require('url').URL
const URL = require( 'url' ).URL

// load up .env
const configResult = require( 'dotenv' ).config( { path: './.env' } )
Expand Down

0 comments on commit 1a32e37

Please sign in to comment.