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 ea5a7ff commit 62f2f44Copy full SHA for 62f2f44
.golangci.yml
@@ -21,17 +21,19 @@ linters:
21
locale: US
22
unparam:
23
check-exported: false
24
+ staticcheck:
25
+ checks:
26
+ - all
27
+ - '-SA1029'
28
+ - '-SA1019'
29
+ - '-ST1003'
30
exclusions:
31
generated: lax
32
presets:
33
- comments
34
- common-false-positives
35
- legacy
36
- std-error-handling
- rules:
- - linters:
- - staticcheck
- text: 'SA1029:'
37
paths:
38
- configs
39
- third_party$
pkg/interceptors/request_id_test.go
@@ -81,7 +81,7 @@ func (ss *testServerStream) SendMsg(m interface{}) error {
81
return nil
82
}
83
84
-func (f *testServerStream) RecvMsg(m interface{}) error {
+func (ss *testServerStream) RecvMsg(m interface{}) error {
85
86
87
0 commit comments