-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path.golangci.yml
47 lines (43 loc) · 901 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
linters:
enable:
# TODO - copyloopvar.
- errcheck
- errorlint
- 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
- 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"