1
0
Fork 0
forked from svrjs/svrjs

Lint out the codebase

This commit is contained in:
Dorian Niemiec 2024-08-27 10:55:24 +02:00
parent 5a3e6765f1
commit fd5e8ba70e
4 changed files with 41 additions and 42 deletions

View file

@ -687,7 +687,9 @@ if (!disableMods) {
// If there was another error, try creating the temp folder and then the modloader folder again // If there was another error, try creating the temp folder and then the modloader folder again
fs.mkdirSync(process.dirname + "/temp"); fs.mkdirSync(process.dirname + "/temp");
try { try {
fs.mkdirSync(process.dirname + "/temp/" + modloaderFolderName); fs.mkdirSync(
process.dirname + "/temp/" + modloaderFolderName,
);
} catch (err) { } catch (err) {
// If there was another error, throw it // If there was another error, throw it
if (err.code != "EEXIST") throw err; if (err.code != "EEXIST") throw err;
@ -696,8 +698,13 @@ if (!disableMods) {
} }
// Create a subfolder for the current mod within the modloader folder // Create a subfolder for the current mod within the modloader folder
fs.mkdirSync(process.dirname + "/temp/" + modloaderFolderName + "/" + modFileRaw); fs.mkdirSync(
process.dirname +
"/temp/" +
modloaderFolderName +
"/" +
modFileRaw,
);
} catch (err) { } catch (err) {
// If there was an error creating the folder, ignore it if it's a known error // If there was an error creating the folder, ignore it if it's a known error
if (err.code != "EEXIST" && err.code != "ENOENT") throw err; if (err.code != "EEXIST" && err.code != "ENOENT") throw err;

View file

@ -199,11 +199,7 @@ module.exports = (req, res, logFacilities, config, next) => {
if (cacheEntry) { if (cacheEntry) {
cb(cacheEntry.hash); cb(cacheEntry.hash);
} else { } else {
crypto.scrypt( crypto.scrypt(password, list[_i].salt, 64, (err, derivedKey) => {
password,
list[_i].salt,
64,
(err, derivedKey) => {
if (err) { if (err) {
res.error(500, err); res.error(500, err);
} else { } else {
@ -216,8 +212,7 @@ module.exports = (req, res, logFacilities, config, next) => {
}); });
cb(key); cb(key);
} }
}, });
);
} }
} }
} else if (list[_i].pbkdf2) { } else if (list[_i].pbkdf2) {

View file

@ -9,9 +9,7 @@ module.exports = (req, res, logFacilities, config, next) => {
req.originalParsedURL.pathname[req.originalParsedURL.pathname.length - 1] != req.originalParsedURL.pathname[req.originalParsedURL.pathname.length - 1] !=
"/" "/"
) { ) {
fs.stat( fs.stat("." + decodeURIComponent(req.parsedURL.pathname), (err, stats) => {
"." + decodeURIComponent(req.parsedURL.pathname),
(err, stats) => {
if (err || !stats.isDirectory()) { if (err || !stats.isDirectory()) {
try { try {
next(); next();
@ -26,8 +24,7 @@ module.exports = (req, res, logFacilities, config, next) => {
req.parsedURL.hash, req.parsedURL.hash,
); );
} }
}, });
);
} else { } else {
next(); next();
} }

View file

@ -119,7 +119,7 @@ if (!process.singleThreaded) {
let oldLog = console.log; let oldLog = console.log;
console.log = (...params) => { console.log = (...params) => {
if ( if (
a == "ChildProcess.prototype.send() - Sorry! Not implemented yet" params[0] == "ChildProcess.prototype.send() - Sorry! Not implemented yet"
) { ) {
throw new Error("NOT IMPLEMENTED"); throw new Error("NOT IMPLEMENTED");
} else { } else {