Open Khady opened 1 month ago
We support not putting a type in required when it is an option, for example
required
type t = { f: string option }
But if the type is an alias for a type which is an option, we don't detect it
type opt = string option type t = { f: opt }
should we have an attribute for such cases?
We support not putting a type in
required
when it is an option, for exampleBut if the type is an alias for a type which is an option, we don't detect it
should we have an attribute for such cases?