In my Angular (typescript) project lint only allows camel-case but I'm getting my response in snake-case. Is there any way besides disabling the lint or getting the keys changed from the backend?
response
{profile_id: 123}
my model in TS interface Profile{ profile_id: number}
but I'm facing lint issues if I define my model like that.
I can only define it as interface Profile{ profileId: number}