refactor: update code style and improve ESLint rules for better consistency

This commit is contained in:
2026-02-26 13:29:53 -03:00
parent e60752743f
commit 1a38e0f3fb
16 changed files with 193 additions and 154 deletions

View File

@@ -1,8 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { NestFactory } from "@nestjs/core";
import { AppModule } from "./app.module";
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3000);
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();
void bootstrap();