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 26d2e9b commit cc651daCopy full SHA for cc651da
.golangci.yml
@@ -1,19 +1,19 @@
1
linters:
2
enable:
3
- - structcheck
4
- - varcheck
5
- - staticcheck
6
- - unconvert
+ - exportloopref # Checks for pointers to enclosing loop variables
7
- gofmt
8
- goimports
9
- - revive
+ - gosec
10
- ineffassign
11
- - vet
12
- - unused
13
- misspell
14
- - gosec
15
- - exportloopref # Checks for pointers to enclosing loop variables
+ - revive
+ - staticcheck
+ - structcheck
16
- tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17
+ - unconvert
+ - unused
+ - varcheck
+ - vet
17
disable:
18
- errcheck
19
0 commit comments