Skip to content

Commit dd1b1e4

Browse files
committed
fix: lint 오류 해결
1 parent 560be7c commit dd1b1e4

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

apps/backend/src/app.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class AppController {
1414
healthCheck() {
1515
return {
1616
status: 'ok',
17-
timestamp: new Date().toISOString()
17+
timestamp: new Date().toISOString(),
1818
};
1919
}
2020
}

apps/backend/src/workspace/workspace.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { RoleModule } from '../role/role.module';
99
import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard';
1010
import { TokenModule } from '../auth/token/token.module';
1111
import { TokenService } from '../auth/token/token.service';
12-
import { ConfigModule } from '@nestjs/config';
12+
import { ConfigModule } from '@nestjs/config';
1313

1414
@Module({
1515
imports: [

apps/backend/src/workspace/workspace.service.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export class WorkspaceService {
216216
// 권한이 없으면 예외 발생
217217
throw new ForbiddenAccessException();
218218
}
219-
219+
220220
return {
221221
workspaceId: workspace.snowflakeId,
222222
title: workspace.title,
@@ -227,7 +227,6 @@ export class WorkspaceService {
227227
};
228228
}
229229

230-
231230
/**
232231
* 가장 처음에 모두가 접속할 수 있는 main workspace를 생성한다.
233232
*/
@@ -284,9 +283,9 @@ export class WorkspaceService {
284283
workspace: findWorkspace,
285284
user: findOwner,
286285
role: 'owner',
287-
});}
286+
});
288287
}
289-
288+
}
290289

291290
async updateVisibility(
292291
userId: number,

apps/websocket/src/app.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class AppController {
99
healthCheck() {
1010
return {
1111
status: 'ok',
12-
timestamp: new Date().toISOString()
12+
timestamp: new Date().toISOString(),
1313
};
1414
}
1515
}

0 commit comments

Comments
 (0)