forked from IBM/sarama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
89 lines (85 loc) · 1.61 KB
/
.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
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
79
80
81
82
83
84
85
86
87
88
89
run:
timeout: 5m
deadline: 10m
linters-settings:
govet:
check-shadowing: false
golint:
min-confidence: 0
gocyclo:
min-complexity: 99
maligned:
suggest-new: true
dupl:
threshold: 100
goconst:
min-len: 2
min-occurrences: 3
misspell:
locale: US
goimports:
local-prefixes: github.com/IBM/sarama
gocritic:
enabled-tags:
- diagnostic
- performance
# - experimental
# - opinionated
# - style
enabled-checks:
- importShadow
- nestingReduce
- stringsCompare
# - unnamedResult
# - whyNoLint
disabled-checks:
- assignOp
- appendAssign
- commentedOutCode
- hugeParam
- ifElseChain
- singleCaseSwitch
- sloppyReassign
funlen:
lines: 300
statements: 300
depguard:
rules:
main:
deny:
- pkg: "io/ioutil"
desc: Use the "io" and "os" packages instead.
linters:
disable-all: true
enable:
- bodyclose
- depguard
- exportloopref
- dogsled
- errcheck
- errorlint
- funlen
- gochecknoinits
- gocritic
- gocyclo
- gofmt
- goimports
- gosec
- govet
- misspell
- nilerr
- staticcheck
- typecheck
- unconvert
- unused
- whitespace
issues:
exclude:
- "G404: Use of weak random number generator"
exclude-rules:
# exclude some linters from running on certains files.
- path: functional.*_test\.go
linters:
- paralleltest
# maximum count of issues with the same text. set to 0 for unlimited. default is 3.
max-same-issues: 0