From 2fbcee22bd28fb3442f960190611e52f162d3e64 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 7 Aug 2024 22:09:46 +0100 Subject: [PATCH] Fixed container errors due to biome --- project/src/di/Container.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/project/src/di/Container.ts b/project/src/di/Container.ts index 2663a5ce..55ac1d18 100644 --- a/project/src/di/Container.ts +++ b/project/src/di/Container.ts @@ -272,6 +272,7 @@ import { DependencyContainer, Lifecycle } from "tsyringe"; /** * Handle the registration of classes to be used by the Dependency Injection code */ +// biome-ignore lint/complexity/noStaticOnlyClass: export class Container { public static registerPostLoadTypes(container: DependencyContainer, childContainer: DependencyContainer): void { container.register("SptHttpListener", SptHttpListener, { lifecycle: Lifecycle.Singleton });