Default severity: note
Avoid formatting calls without directives.
Bad
fmt.Sprintf("static message")Good
fmt.Sprint(value)Avoid formatting calls without directives.
Default severity: note
Avoid formatting calls without directives.
fmt.Sprintf("static message")fmt.Sprint(value)