Default severity: note
Discourage anonymous nested struct types.
Bad
type User struct { Address struct { City string } }Good
type Address struct { City string }
type User struct { Address Address }Discourage anonymous nested struct types.
Default severity: note
Discourage anonymous nested struct types.
type User struct { Address struct { City string } }type Address struct { City string }
type User struct { Address Address }