You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
I noticed this more or less accidentally - if you e.g. have code like this:
interfaceMyInterface{/** * This is old! * @deprecated Do not use this anymore. */oldProp?: string;}classMyClassimplementsMyInterface{/** @inheritDoc /*oldProp?: string;}constobj=newMyClass();obj.oldProp='xx';// does not raise an eslint error :(
Honestly I am not sure how easy it is to fix this, but got bitten by this quite a bit because I expected this to work 😅
The text was updated successfully, but these errors were encountered:
I noticed this more or less accidentally - if you e.g. have code like this:
Honestly I am not sure how easy it is to fix this, but got bitten by this quite a bit because I expected this to work 😅
The text was updated successfully, but these errors were encountered: