Skip to content

Commit

Permalink
style: code style issues with ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 13, 2022
1 parent 75abb6f commit fcd2e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors();
app.use(helmet());
app.use(compression())
app.use(compression());
app.useGlobalPipes(new ValidationPipe());
app.useGlobalInterceptors(new LoggingInterceptor());
app.useGlobalFilters(new HttpExceptionFilter());
Expand Down

0 comments on commit fcd2e4b

Please sign in to comment.