You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: