-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
193 lines (191 loc) · 4.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
issues:
# Let us display all issues of one type at once
max-same-issues: 0
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
- path: _test\.go
linters:
- bodyclose
- cyclop
- errcheck
- forbidigo
- goconst
- gocyclo
- mnd
- gosec
- nilnil
- noctx
- revive
- depguard
- lll # signatures are long lines
- path: _test\.go
text: "SA1019" # we still want to test deprecated functions
- path: cmd
linters:
- forbidigo # we use Println in our UX
- path: internal/lib
linters:
- forbidigo # we use Println in our UX
- path: client/http
text: "unexported-return"
exclude-dirs:
- demo
- test
linters:
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
#- containedctx #TODO could be enabled
#- contextcheck #TODO could be enabled
#- cyclop
#- deadcode # Deprecated
- decorder
# - depguard
- dogsled
- dupl
- dupword
- durationcheck
- errcheck
- errchkjson
- errname
- errorlint
# - execinquery # deprecated
- exhaustive
# - exhaustivestruct
# - exhaustruct
- exportloopref
# - forbidigo
# - forcetypeassert #TODO could be enabled
- funlen
# - gci
# - gochecknoglobals
- gochecknoinits
# - gocognit
- goconst
- gocritic
- gocyclo
# - godot
# - godox #TODO could be enabled
# - goerr113
- gofmt
# - gofumpt
- goheader
- goimports
# - golint # Deprecated
# - gomnd # deprecated, replaced by mnd
# - gomoddirectives
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- grouper
# - ifshort
- importas
- ineffassign
- interfacebloat
# - interfacer # Deprecated
# - ireturn
- lll
- loggercheck
- maintidx
- makezero
# - maligned #Deprecated
#- mnd
- misspell
- nakedret
# - nestif
- nilerr
- nilnil
# - nlreturn
- noctx
- nolintlint
# - nonamedreturns
# - nosnakecase
- nosprintfhostport
# - paralleltest #TODO could be enabled
- prealloc
- predeclared
# - promlinter #TODO could be enabled
- reassign
- revive
- rowserrcheck
# - scopelint # Deprecated
- sqlclosecheck
- staticcheck
# - structcheck # Deprecated
- stylecheck
# - tagliatelle
- tenv
- testableexamples
# - testpackage
# - thelper #TODO could be enabled
- tparallel
- typecheck
- unconvert
- unparam
- unused
- usestdlibvars
# - varcheck # Deprecated
# - varnamelen
- wastedassign
- whitespace
# - wrapcheck
# - wsl
linters-settings:
dupl:
threshold: 100
exhaustive:
default-signifies-exhaustive: false
funlen:
lines: 100
statements: 50
goconst:
min-len: 3
min-occurrences: 3
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
disabled-checks:
- dupImport # https://github.com/go-critic/go-critic/issues/845
- ifElseChain
- octalLiteral
- whyNoLint
- wrapperFunc
gocyclo:
min-complexity: 15
goimports:
local-prefixes: github.com/drand
golint:
min-confidence: 0
mnd:
# don't include the "operation" and "assign"
checks:
- argument
- case
- condition
- return
lll:
line-length: 140
# maligned: # Deprecated
# suggest-new: true
# govet:
# check-shadowing: true #TODO could be enabled
# enable:
# - fieldalignment #TODO could be enabled
revive:
enable:
- var-naming
misspell:
locale: US
nolintlint:
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space)
allow-unused: false # report any unused nolint directives
require-explanation: false # don't require an explanation for nolint directives
require-specific: false # don't require nolint directives to be specific about which linter is being skipped