Skip to content

Commit 2e45932

Browse files
committed
chore: add eslint ignore rule for any type
1 parent 9921903 commit 2e45932

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/backend/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ async function bootstrap() {
1919
app.enableShutdownHooks();
2020
app.useGlobalPipes(new ValidationPipe());
2121
app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector)));
22-
23-
// TODO: Remove `as any` when type definitions are fixed
22+
// TODO: Remove `as any` when type definitions of "@fastify/secure-session" package are fixed
23+
/* eslint-disable @typescript-eslint/no-explicit-any */
2424
await app.register(fastifySecureSession as any, {
2525
expiry: configService.get("session.expiry"),
2626
cookieName: configService.get("session.cookieName"),

0 commit comments

Comments
 (0)