Closed RReverser closed 1 month ago
int32 and uint32 imply their minimum/maximum values by the type itself, so no need to spell them out the default bounds as that only adds verbosity.
Keep custom bounds in place though (e.g. when using int32 but with minimum: 0).
int32
minimum: 0
Before:
After:
Merged as suggested.
int32 and uint32 imply their minimum/maximum values by the type itself, so no need to spell them out the default bounds as that only adds verbosity.
Keep custom bounds in place though (e.g. when using
int32
but withminimum: 0
).Before:
After: