Skip to content

Commit 032b39e

Browse files
committed
lint .
1 parent 1b9bd81 commit 032b39e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/core/config/app.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ export default registerAs<AppConfig>('app', () => {
6161
port: process.env.APP_PORT
6262
? parseInt(process.env.APP_PORT, 10)
6363
: process.env.PORT
64-
? parseInt(process.env.PORT, 10)
65-
: 3000,
64+
? parseInt(process.env.PORT, 10)
65+
: 3000,
6666
apiPrefix: process.env.API_PREFIX || 'api',
6767
fallbackLanguage: process.env.APP_FALLBACK_LANGUAGE || 'en',
6868
headerLanguage: process.env.APP_HEADER_LANGUAGE || 'x-custom-lang',

src/core/dtos/chats/send-message.dto.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ApiProperty } from '@nestjs/swagger';
22
import { IsString, IsNotEmpty } from 'class-validator';
33

44
export class SendMessageDto {
5-
@ApiProperty({type: String})
5+
@ApiProperty({ type: String })
66
@IsString()
77
@IsNotEmpty()
88
data;

src/core/dtos/meetings/add-user.dto.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ApiProperty } from '@nestjs/swagger';
22
import { IsNotEmpty, IsNumber } from 'class-validator';
33

44
export class AddUserDto {
5-
@ApiProperty({type: Number})
5+
@ApiProperty({ type: Number })
66
@IsNumber()
77
@IsNotEmpty()
88
userId;

0 commit comments

Comments
 (0)