Default severity: error
Reject declarations whose names differ only by capitalization. Default: methods and fields.
Bad
type User struct { ID string; Id string }Good
type User struct { ID string; Name string }Reject declarations whose names differ only by capitalization.
Default severity: error
Reject declarations whose names differ only by capitalization. Default: methods and fields.
type User struct { ID string; Id string }type User struct { ID string; Name string }