From 4fd74ad41db883017d840a64016b02284c7f776d Mon Sep 17 00:00:00 2001 From: Chika Date: Thu, 24 Nov 2022 15:36:35 +0300 Subject: [PATCH] [eslint} apps/api: disable rule prefer-top-level-await --- apps/api/src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index 2f30077..1dcb2ca 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -1,3 +1,4 @@ +/* eslint-disable unicorn/prefer-top-level-await */ import fastifyCookie from '@fastify/cookie'; import { NestFactory } from '@nestjs/core'; import type { NestFastifyApplication } from '@nestjs/platform-fastify';