Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Repro
{"rules": {"@typescript-eslint/no-explicit-any": ["error", {"ignoreGenericConstraints":true }] }}
typeIsString<Textendsany>=Textendsstring ?true :false;typeCodomainOf<TextendsRecord<string,any>>=TextendsRecord<string, inferR> ?R :never;
Expected Result
No errors for explicitany
if they are used in generic constraints.
Actual Result
There is no such option to disable errors/warnings for explicitany
usage in generic constraints.