chore: remove unneeded eslint disable directives
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled

This commit is contained in:
William Oldham 2025-01-28 23:22:54 +00:00
parent 233a82697a
commit bb45491c7e
2 changed files with 0 additions and 7 deletions

View File

@ -87,12 +87,7 @@ async function auth(request: express.Request, response: express.Response, next:
return serverError(response, discovery);
}
// * This is a false positive from ESLint.
// * Since this middleware is only ever called
// * per every request instance
// eslint-disable-next-line require-atomic-updates
request.pid = pid;
// eslint-disable-next-line require-atomic-updates
request.paramPack = paramPackData;
const userSettings = await getUserSettings(request.pid);

View File

@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import crypto from 'node:crypto';
import newman from 'newman';
import { Collection, CollectionDefinition } from 'postman-collection';