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.
2 parents 3c34181 + 10be661 commit af2d6deCopy full SHA for af2d6de
.golangci.yml
@@ -20,6 +20,7 @@ linters:
20
- gocritic
21
- gomodguard
22
- gosec
23
+ - govet
24
- importas
25
- misspell
26
- nakedret
@@ -33,7 +34,6 @@ linters:
33
34
- usetesting
35
disable:
36
- errcheck
- - govet
37
- ineffassign
38
- staticcheck
39
- unused
@@ -51,6 +51,13 @@ linters:
51
gosec:
52
excludes:
53
- G115
54
+ govet:
55
+ disable:
56
+ - copylocks
57
+ - fieldalignment
58
+ - shadow
59
+ - testinggoroutine
60
+ enable-all: true
61
perfsprint:
62
# Optimizes even if it requires an int or uint type cast.
63
int-conversion: true
0 commit comments