Skip to content

nested-structs

Discourage anonymous nested struct types.

Updated View as Markdown

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 }
Navigation

Type to search…

↑↓ navigate↵ selectEsc close