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.
1 parent 98e5b11 commit 1450af3Copy full SHA for 1450af3
.golangci.yml
@@ -60,3 +60,7 @@ issues:
60
linters:
61
- unused
62
- errcheck
63
+
64
+ - path: internal/tabwriter/.*_test\.go
65
+ linters:
66
+ - goconst
internal/qa/qa.go
@@ -75,7 +75,7 @@ type WellKnownArgOrderError struct {
75
}
76
77
func (err WellKnownArgOrderError) Error() string {
78
- return "well-known arg order must be respected '" + err.Command.GetCommandLine("scw") + "', arg '" + err.Argspec.Name + "'"
+ return "well-known arg order must be respected '" + err.Command.GetCommandLine("scw") + "', arg '" + err.Argspec.Name + "'" //nolint: goconst
79
80
81
type WellKnownArgAtTheEndError struct {
0 commit comments