fix linting

This commit is contained in:
Arthur Lu 2024-01-12 01:48:34 +00:00
parent c0fc119dc2
commit 34f9ff99ee
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import morgan from "morgan";
import session from "express-session"; import session from "express-session";
import parseArgs from "minimist"; import parseArgs from "minimist";
import * as utils from "./utils.js" import * as utils from "./utils.js";
import LDAP from "./ldap.js"; import LDAP from "./ldap.js";
global.argv = parseArgs(process.argv.slice(2), { global.argv = parseArgs(process.argv.slice(2), {

View File

@ -9,4 +9,4 @@ export function readJSONFile (path) {
console.log(`error: ${path} was not found.`); console.log(`error: ${path} was not found.`);
exit(1); exit(1);
} }
}; };