Ignored various property naming lint issues
This commit is contained in:
parent
923a92169d
commit
ece45f0788
@ -294,7 +294,9 @@ export interface Props
|
|||||||
foodUseTime?: number
|
foodUseTime?: number
|
||||||
foodEffectType?: string
|
foodEffectType?: string
|
||||||
StimulatorBuffs?: string
|
StimulatorBuffs?: string
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
effects_health?: IHealthEffect[] | Record<string, Record<string, number>>
|
effects_health?: IHealthEffect[] | Record<string, Record<string, number>>
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
effects_damage?: Record<string, IEffectDamageProps>
|
effects_damage?: Record<string, IEffectDamageProps>
|
||||||
MaximumNumberOfUsage?: number
|
MaximumNumberOfUsage?: number
|
||||||
knifeHitDelay?: number
|
knifeHitDelay?: number
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
export interface IDeleteFriendRequest
|
export interface IDeleteFriendRequest
|
||||||
{
|
{
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
friend_id: string
|
friend_id: string
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@ export interface IGameConfigResponse
|
|||||||
activeProfileId: string
|
activeProfileId: string
|
||||||
backend: Backend
|
backend: Backend
|
||||||
useProtobuf: boolean
|
useProtobuf: boolean
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
utc_time: number
|
utc_time: number
|
||||||
/** Total in game time */
|
/** Total in game time */
|
||||||
totalInGame: number
|
totalInGame: number
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
export interface IGameKeepAliveResponse
|
export interface IGameKeepAliveResponse
|
||||||
{
|
{
|
||||||
msg: string
|
msg: string
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
utc_time: number
|
utc_time: number
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
export interface IGameStartResponse
|
export interface IGameStartResponse
|
||||||
{
|
{
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
utc_time: number
|
utc_time: number
|
||||||
}
|
}
|
||||||
|
@ -9,5 +9,6 @@ export interface AddItem
|
|||||||
{
|
{
|
||||||
count: number
|
count: number
|
||||||
sptIsPreset?: boolean
|
sptIsPreset?: boolean
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
item_id: string
|
item_id: string
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,6 @@ export interface Item
|
|||||||
{
|
{
|
||||||
id: string
|
id: string
|
||||||
count: number
|
count: number
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
scheme_id: number
|
scheme_id: number
|
||||||
}
|
}
|
||||||
|
@ -15,10 +15,14 @@ export interface IWeather
|
|||||||
pressure: number
|
pressure: number
|
||||||
temp: number
|
temp: number
|
||||||
fog: number
|
fog: number
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
rain_intensity: number
|
rain_intensity: number
|
||||||
rain: number
|
rain: number
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
wind_gustiness: number
|
wind_gustiness: number
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
wind_direction: WindDirection
|
wind_direction: WindDirection
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
wind_speed: number
|
wind_speed: number
|
||||||
cloud: number
|
cloud: number
|
||||||
time: string
|
time: string
|
||||||
|
@ -50,8 +50,8 @@ export enum WildSpawnTypeNumber
|
|||||||
SPIRITSPRING = 48,
|
SPIRITSPRING = 48,
|
||||||
PMCBEAR = 49,
|
PMCBEAR = 49,
|
||||||
PMCUSEC = 50,
|
PMCUSEC = 50,
|
||||||
skier = 51,
|
SKIER = 51,
|
||||||
peacemaker = 52,
|
PEACEMAKER = 52,
|
||||||
SPTUSEC = 100,
|
SPTUSEC = 100,
|
||||||
SPTBEAR = 101,
|
SPTBEAR = 101,
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,8 @@ import { IBarterScheme } from "@spt/models/eft/common/tables/ITrader";
|
|||||||
export interface ICreateFenceAssortsResult
|
export interface ICreateFenceAssortsResult
|
||||||
{
|
{
|
||||||
sptItems: Item[][]
|
sptItems: Item[][]
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
barter_scheme: Record<string, IBarterScheme[][]>
|
barter_scheme: Record<string, IBarterScheme[][]>
|
||||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||||
loyal_level_items: Record<string, number>
|
loyal_level_items: Record<string, number>
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user