0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

Ignored various property naming lint issues

This commit is contained in:
Dev 2024-05-25 15:57:11 +01:00
parent ece45f0788
commit d3b8138bab
2 changed files with 3 additions and 0 deletions

View File

@ -466,6 +466,7 @@ export interface Slot
_id: string _id: string
_parent: string _parent: string
_props: SlotProps _props: SlotProps
// eslint-disable-next-line @typescript-eslint/naming-convention
_max_count?: number _max_count?: number
_required?: boolean _required?: boolean
_mergeSlotWithChildren?: boolean _mergeSlotWithChildren?: boolean
@ -493,6 +494,7 @@ export interface StackSlot
_name?: string _name?: string
_id: string _id: string
_parent: string _parent: string
// eslint-disable-next-line @typescript-eslint/naming-convention
_max_count: number _max_count: number
_props: StackSlotProps _props: StackSlotProps
_proto: string _proto: string

View File

@ -17,5 +17,6 @@ export interface ProfileData
raidMode?: string raidMode?: string
mode?: string mode?: string
shortId?: string shortId?: string
// eslint-disable-next-line @typescript-eslint/naming-convention
additional_info?: any[] additional_info?: any[]
} }