I think that the reporting on constants may be incorrect. GoReporter states that uppercase is incorrect, however that is not the case for constants. viz:
GoReporter: "don't use ALL_CAPS in Go names; use CamelCase"
Naming Conventions for Golang Constants
By convention, constant names are usually written in uppercase letters. This is for their easy identification and differentiation from variables in the source code.
I think that the reporting on constants may be incorrect. GoReporter states that uppercase is incorrect, however that is not the case for constants. viz:
GoReporter: "don't use ALL_CAPS in Go names; use CamelCase"
https://www.golangprograms.com/go-language/constants.html
Naming Conventions for Golang Constants By convention, constant names are usually written in uppercase letters. This is for their easy identification and differentiation from variables in the source code.