nested-structs
Default severity: note
Discourage anonymous nested struct types. Default: enabled.
type User struct { Address struct { City string } }type Address struct { City string }type User struct { Address Address }Default severity: note
Discourage anonymous nested struct types. Default: enabled.
type User struct { Address struct { City string } }type Address struct { City string }type User struct { Address Address }