We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Support the following case (at the moment functional/prefer-readonly-type gets emitted):
functional/prefer-readonly-type
type MyType = Readonly<{ a: string, b: number }>;
This is a prerequisite for #32 (which is about a fixer to Readonly<T> if I understand it correctly); but the validation can implemented before.
Readonly<T>