-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy path.golangci.yml
More file actions
78 lines (75 loc) · 1.72 KB
/
.golangci.yml
File metadata and controls
78 lines (75 loc) · 1.72 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: "2"
linters:
enable:
- contextcheck
- copyloopvar
- depguard
- dupl
- gocritic
- gocyclo
- gosec
- importas
- misspell
- nakedret
- nolintlint
- prealloc
- revive
- unconvert
- whitespace
settings:
depguard:
rules:
main:
deny:
- pkg: github.com/pkg/errors
desc: Please use "errors" package from standard library
- pkg: gotest.tools/v3
desc: Please keep tests unified using only github.com/stretchr/testify
- pkg: log
desc: Please keep logging unified using only github.com/sirupsen/logrus
gocritic:
disabled-checks:
- ifElseChain
gocyclo:
min-complexity: 20
importas:
alias:
- pkg: github.com/sirupsen/logrus
alias: log
- pkg: github.com/stretchr/testify/assert
alias: assert
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
# gosec rules not enforced in v1; enable incrementally
- linters: [gosec]
text: "G101|G115|G117"
# staticcheck style suggestions not enforced in v1
- linters: [staticcheck]
text: "ST1005|ST1019|QF1003|QF1008|QF1012"
# prealloc was enabled in v1 but these findings were suppressed
- linters: [prealloc]
text: "Consider preallocating"
paths:
- report
- third_party$
- builtin$
- examples$
issues:
max-issues-per-linter: 0
max-same-issues: 0
formatters:
enable:
- goimports
exclusions:
generated: lax
paths:
- report
- third_party$
- builtin$
- examples$