From de7f05b2eeda28457fba9bacf58c045ea1128cf4 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 29 Oct 2021 00:43:07 +1300 Subject: [PATCH] Fix lint Signed-off-by: Richie Bendall --- server.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server.js b/server.js index beafaddd..02bda885 100644 --- a/server.js +++ b/server.js @@ -1,6 +1,7 @@ // IMPORTANT: Set the `github_token` environment variable to a personal access token with at least the `public_repo` scope for the API. // The `PORT` environment variable can also be set to control the port the server should be hosted on. import path, {dirname} from 'node:path' +import {fileURLToPath} from 'node:url' import process from 'node:process' import express from 'express' import minify from 'express-minify' @@ -10,8 +11,6 @@ import tempDirectory from 'temp-dir' import postcssPresetEnv from 'postcss-preset-env' import cors from 'cors' -import {fileURLToPath} from 'node:url' - import postRoute from './routes/post.js' import getRoute from './routes/get.js'