forked from linkerd/linkerd2-proxy-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
48 lines (44 loc) · 913 Bytes
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
linters:
enable:
- errcheck
- errorlint
- exportloopref
- goconst
- gocritic
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- revive
- staticcheck
- typecheck
- unconvert
- unused
## TODO: enable more linters!
# - depguard
# - dupl
# - gochecknoglobals
# - gochecknoinits
# - gocyclo
# - interfacer
# - lll
# - maligned
# - prealloc
# - stylecheck
# Disabled for generics https://github.com/golangci/golangci-lint/issues/2649
disable:
- bodyclose
- structcheck
- unparam
issues:
exclude-use-default: false
exclude-rules:
# False-positive reports about invoking commands with variables.
- linters:
- gosec
text: "G204: Subprocess launched with .*"
- linters:
- revive
text: "package-comments: should have a package comment"