From 39ba88105f342cfe3473f6023acf8e3a4f83b995 Mon Sep 17 00:00:00 2001 From: n08i40k Date: Sat, 19 Oct 2024 02:16:42 +0400 Subject: [PATCH] =?UTF-8?q?ESLint=20=D1=84=D0=B8=D0=BA=D1=81=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/auth/dto/update-token-response.dto.ts | 3 +-- src/schedule/dto/v1/cache-status.dto.ts | 2 +- src/schedule/dto/v1/v1-cache-status.dto.ts | 2 +- src/schedule/dto/v1/v1-group.dto.ts | 2 +- src/schedule/dto/v1/v1-lesson.dto.ts | 2 +- src/schedule/dto/v1/v1-schedule-group-names.dto.ts | 2 +- src/schedule/dto/v2/v2-lesson-sub-group.dto.ts | 2 +- 7 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/auth/dto/update-token-response.dto.ts b/src/auth/dto/update-token-response.dto.ts index 2fa8b30..d7dc03f 100644 --- a/src/auth/dto/update-token-response.dto.ts +++ b/src/auth/dto/update-token-response.dto.ts @@ -1,4 +1,3 @@ import { UpdateTokenDto } from "./update-token.dto"; -export class UpdateTokenResponseDto extends UpdateTokenDto { -} \ No newline at end of file +export class UpdateTokenResponseDto extends UpdateTokenDto {} diff --git a/src/schedule/dto/v1/cache-status.dto.ts b/src/schedule/dto/v1/cache-status.dto.ts index d2e0659..afb8400 100644 --- a/src/schedule/dto/v1/cache-status.dto.ts +++ b/src/schedule/dto/v1/cache-status.dto.ts @@ -16,4 +16,4 @@ export class CacheStatusDto extends V2CacheStatusDto { } } } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-cache-status.dto.ts b/src/schedule/dto/v1/v1-cache-status.dto.ts index 1a483b1..95f387e 100644 --- a/src/schedule/dto/v1/v1-cache-status.dto.ts +++ b/src/schedule/dto/v1/v1-cache-status.dto.ts @@ -18,4 +18,4 @@ export class V1CacheStatusDto { @IsHash("sha1") @Expose() cacheHash: string; -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-group.dto.ts b/src/schedule/dto/v1/v1-group.dto.ts index c884a2b..a586f19 100644 --- a/src/schedule/dto/v1/v1-group.dto.ts +++ b/src/schedule/dto/v1/v1-group.dto.ts @@ -22,4 +22,4 @@ export class V1GroupDto { this.name = name; this.days = []; } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-lesson.dto.ts b/src/schedule/dto/v1/v1-lesson.dto.ts index cf4f04d..c974bf9 100644 --- a/src/schedule/dto/v1/v1-lesson.dto.ts +++ b/src/schedule/dto/v1/v1-lesson.dto.ts @@ -73,4 +73,4 @@ export class V1LessonDto { this.cabinets = cabinets; this.teacherNames = teacherNames; } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-schedule-group-names.dto.ts b/src/schedule/dto/v1/v1-schedule-group-names.dto.ts index 100f78e..bf5b599 100644 --- a/src/schedule/dto/v1/v1-schedule-group-names.dto.ts +++ b/src/schedule/dto/v1/v1-schedule-group-names.dto.ts @@ -8,4 +8,4 @@ export class V1ScheduleGroupNamesDto { }) @IsArray() names: Array; -} \ No newline at end of file +} diff --git a/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts b/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts index 6994be0..8dfe520 100644 --- a/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts +++ b/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts @@ -19,7 +19,7 @@ export class V2LessonSubGroupDto { /** * ФИО преподавателя - * @example "Хомченко Н.Е." + * @example "Хомченко Н. Е." */ @IsString() teacher: string;