From 5d696a91183b03efe21d971f2f55eee8dfba00f5 Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 12 Jul 2024 14:09:33 +0200 Subject: [PATCH] refactor(drizzle): remove unnecessary lint/style comments from the service Deleted superfluous "biome-ignore" comments related to lint/style in the drizzle.service.ts, which were marked as required for Nest.js but were not necessary. The code remains functional without these comments. --- src/drizzle/drizzle.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/drizzle/drizzle.service.ts b/src/drizzle/drizzle.service.ts index ff5bae1..bbca570 100644 --- a/src/drizzle/drizzle.service.ts +++ b/src/drizzle/drizzle.service.ts @@ -1,6 +1,5 @@ -// biome-ignore lint/style/useImportType: used by Next.js + import { Injectable, OnModuleDestroy, OnModuleInit } from "@nestjs/common"; -// biome-ignore lint/style/useImportType: used by Next.js import { ConfigService } from "@nestjs/config"; import { drizzle } from "drizzle-orm/postgres-js"; import { migrate } from "drizzle-orm/postgres-js/migrator";