From 2b97c60ea55b577d72a940441906d87b53b8031b Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 11 Feb 2025 07:09:47 +0000 Subject: [PATCH] fix linting --- src/main.js | 2 +- src/utils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.js b/src/main.js index 6029b07..2d9c23e 100644 --- a/src/main.js +++ b/src/main.js @@ -5,7 +5,7 @@ import morgan from "morgan"; import session from "express-session"; import parseArgs from "minimist"; -import * as utils from "./utils.js" +import * as utils from "./utils.js"; import LDAP from "./ldap.js"; global.argv = parseArgs(process.argv.slice(2), { diff --git a/src/utils.js b/src/utils.js index bf5173b..208589c 100644 --- a/src/utils.js +++ b/src/utils.js @@ -9,4 +9,4 @@ export function readJSONFile (path) { console.log(`error: ${path} was not found.`); exit(1); } -}; \ No newline at end of file +};