refactor: Enable prefer-global rules

This commit is contained in:
Joachim Van Herwegen
2024-03-12 15:04:49 +01:00
parent c24e6d5a18
commit c65096020e
5 changed files with 4 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
import type { Server } from 'node:http';
import { URL } from 'node:url';
import { promisify } from 'node:util';
import { getLoggerFor } from '../logging/LogUtil';
import { isHttpsServer } from '../server/HttpServerFactory';

View File

@@ -1,5 +1,4 @@
import cluster from 'node:cluster';
import process from 'node:process';
import type { LogLevel } from './LogLevel';
export interface LogMetadata {

View File

@@ -1,4 +1,3 @@
import { URL } from 'node:url';
import type { ResourceIdentifier } from '../../http/representation/ResourceIdentifier';
import { errorTermsToMetadata } from '../errors/HttpErrorUtil';
import { InternalServerError } from '../errors/InternalServerError';