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 94474a2 commit dca762aCopy full SHA for dca762a
.golangci.yml
@@ -18,6 +18,18 @@ linters:
18
govet:
19
enable:
20
- nilness
21
+ staticcheck:
22
+ checks:
23
+ - all
24
+ # disable: could remove embedded field "field" from selector
25
+ # explicit selectors can be clearer
26
+ - '-QF1008'
27
+ # TODO: re-enable. We have a lot of packages without comments and the
28
+ # diff to upgrade go is already huge
29
+ - '-ST1000'
30
+ # We have a lot of legacy capitalized error strings that are really user
31
+ # Facing log messages
32
+ - '-ST1005'
33
exclusions:
34
paths:
35
- .git
0 commit comments