Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/golinters/gci.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func NewGci(settings *config.GciSettings) *goanalysis.Linter {

return goanalysis.NewLinter(
gciName,
"Gci controls golang package import order and makes it always deterministic.",
"Gci controls Go package import order and makes it always deterministic.",
[]*analysis.Analyzer{analyzer},
nil,
).WithContextSetter(func(lintCtx *linter.Context) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/golinters/goerr113.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func NewGoerr113() *goanalysis.Linter {
return goanalysis.NewLinter(
"goerr113",
"Golang linter to check the errors handling expressions",
"Go linter to check the errors handling expressions",
[]*analysis.Analyzer{err113.NewAnalyzer()},
nil,
).WithLoadMode(goanalysis.LoadModeTypesInfo)
Expand Down
2 changes: 1 addition & 1 deletion pkg/golinters/thelper.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func NewThelper(cfg *config.ThelperSettings) *goanalysis.Linter {

return goanalysis.NewLinter(
"thelper",
"thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers",
"thelper detects Go test helpers without t.Helper() call and checks the consistency of test helpers",
[]*analysis.Analyzer{a},
cfgMap,
).WithLoadMode(goanalysis.LoadModeTypesInfo)
Expand Down