We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
govet
1 parent d751398 commit e4ebf82Copy full SHA for e4ebf82
pkg/golinters/govet.go
@@ -143,7 +143,8 @@ func NewGovet(settings *config.GovetSettings) *goanalysis.Linter {
143
return goanalysis.NewLinter(
144
"govet",
145
"Vet examines Go source code and reports suspicious constructs, "+
146
- "such as Printf calls whose arguments do not align with the format string",
+ "such as Printf calls whose arguments do not align with the format string. "+
147
+ "This is the same analysis as the 'go vet' tool",
148
analyzersFromConfig(settings),
149
conf,
150
).WithLoadMode(goanalysis.LoadModeTypesInfo)
0 commit comments