From d3b8138bab60b92c989c5b8e03251a6043fb9efd Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 25 May 2024 15:57:11 +0100 Subject: [PATCH] Ignored various property naming lint issues --- project/src/models/eft/common/tables/ITemplateItem.ts | 2 ++ project/src/models/eft/profile/GetProfileStatusResponseData.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/project/src/models/eft/common/tables/ITemplateItem.ts b/project/src/models/eft/common/tables/ITemplateItem.ts index 41591ce2..59b545d0 100644 --- a/project/src/models/eft/common/tables/ITemplateItem.ts +++ b/project/src/models/eft/common/tables/ITemplateItem.ts @@ -466,6 +466,7 @@ export interface Slot _id: string _parent: string _props: SlotProps + // eslint-disable-next-line @typescript-eslint/naming-convention _max_count?: number _required?: boolean _mergeSlotWithChildren?: boolean @@ -493,6 +494,7 @@ export interface StackSlot _name?: string _id: string _parent: string + // eslint-disable-next-line @typescript-eslint/naming-convention _max_count: number _props: StackSlotProps _proto: string diff --git a/project/src/models/eft/profile/GetProfileStatusResponseData.ts b/project/src/models/eft/profile/GetProfileStatusResponseData.ts index f70e6dcb..23bae8fe 100644 --- a/project/src/models/eft/profile/GetProfileStatusResponseData.ts +++ b/project/src/models/eft/profile/GetProfileStatusResponseData.ts @@ -17,5 +17,6 @@ export interface ProfileData raidMode?: string mode?: string shortId?: string + // eslint-disable-next-line @typescript-eslint/naming-convention additional_info?: any[] }