-
Notifications
You must be signed in to change notification settings - Fork 119
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
From #607, it appears invalid casing (Id
instead of ID
) linting issues are not being reported by our golangci-lint configuration.
Expected solution
If an invalid casing is detected, such as:
type Foo struct {
Id string
}
Then, the linter should error and require the casing to be fixed:
type Foo struct {
ID string
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed