-
Notifications
You must be signed in to change notification settings - Fork 635
/
Copy path.golangci.yml
383 lines (383 loc) · 9.85 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
version: "2"
run:
build-tags:
- integration
- integration_api
- integration_cli
- integration_k8s
- integration_provision
issues-exit-code: 1
tests: true
output:
formats:
text:
path: stdout
print-linter-name: true
print-issued-lines: true
colors: false
linters:
default: all
disable:
- contextcheck
- depguard
- dupword
- err113
- errorlint
- exhaustruct
- forbidigo
- forcetypeassert
- funlen
- gochecknoglobals
- gochecknoinits
- gocognit
- godox
- gosec
- inamedparam
- ireturn
- maintidx
- mnd
- musttag
- nakedret
- nestif
- nilnil
- nolintlint
- nonamedreturns
- paralleltest
- perfsprint
- promlinter
- protogetter
- recvcheck
- tagalign
- tagliatelle
- testifylint
- thelper
- varnamelen
- wrapcheck
settings:
cyclop:
max-complexity: 20
dupl:
threshold: 100
errcheck:
check-type-assertions: false
check-blank: true
exclude-functions:
- fmt.Fprintln
- fmt.Fprintf
- fmt.Fprint
goconst:
min-len: 3
min-occurrences: 3
gocyclo:
min-complexity: 10
gomoddirectives:
replace-allow-list:
- gopkg.in/yaml.v3
- github.com/coredns/coredns
- github.com/mdlayher/kobject
- golang.zx2c4.com/wireguard
- golang.zx2c4.com/wireguard/wgctrl
- cloud.google.com/go
- github.com/mdlayher/ethtool
- github.com/insomniacslk/dhcp
replace-local: true
exclude-forbidden: false
retract-allow-no-explanation: false
lll:
line-length: 200
tab-width: 1
misspell:
locale: US
nolintlint:
require-explanation: false
require-specific: true
allow-unused: false
prealloc:
simple: true
range-loops: true
for-loops: false
staticcheck:
checks: ["all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022", "-QF1001", "-QF1008"]
unused:
local-variables-are-used: false
exclusions:
generated: lax
rules:
- linters:
- dupl
path: cmd/talosctl/cmd
- linters:
- dupl
path: internal/app/machined/internal/phase
- linters:
- dupl
path: internal/app/machined/pkg/system/services
- linters:
- revive
path: cmd/talosctl/cmd/mgmt
text: should have a package comment
- linters:
- revive
path: cmd/talosctl/cmd/mgmt/inject
text: should have a package comment
- linters:
- revive
path: cmd/talosctl/cmd/talos
text: should have a package comment
- linters:
- revive
path: cmd/talosctl/pkg/talos/action
text: should have a package comment
- linters:
- revive
path: cmd/talosctl/pkg/talos/global
text: should have a package comment
- linters:
- revive
path: cmd/talosctl/pkg/talos/helpers
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/controllers/cri
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/controllers/kubeaccess/serviceaccount
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/controllers/perf
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/events
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/health
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/runner/containerd
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/runner/goroutine
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/runner/process
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system/runner/restart
text: should have a package comment
- linters:
- revive
path: internal/app/machined/pkg/system
text: should have a package comment
- linters:
- revive
path: internal/app/maintenance
text: should have a package comment
- linters:
- revive
path: internal/app/maintenance/server
text: should have a package comment
- linters:
- revive
path: internal/app/poweroff
text: should have a package comment
- linters:
- revive
path: internal/app/trustd/internal/reg
text: should have a package comment
- linters:
- revive
path: internal/app/trustd
text: should have a package comment
- linters:
- revive
path: internal/pkg/containers/image
text: should have a package comment
- linters:
- revive
path: internal/pkg/etcd
text: should have a package comment
- linters:
- revive
path: internal/pkg/install
text: should have a package comment
- linters:
- revive
path: internal/pkg/mount
text: should have a package comment
- linters:
- revive
path: internal/pkg/mount/switchroot
text: should have a package comment
- linters:
- revive
path: internal/pkg/tui/components
text: should have a package comment
- linters:
- revive
path: pkg/argsbuilder
text: should have a package comment
- linters:
- revive
path: pkg/chunker
text: should have a package comment
- linters:
- revive
path: pkg/chunker/file
text: should have a package comment
- linters:
- revive
path: pkg/chunker/stream
text: should have a package comment
- linters:
- revive
path: pkg/download
text: should have a package comment
- linters:
- revive
path: pkg/grpc/dialer
text: should have a package comment
- linters:
- revive
path: pkg/grpc/factory
text: should have a package comment
- linters:
- revive
path: pkg/grpc/gen
text: should have a package comment
- linters:
- revive
path: pkg/grpc/middleware/auth/basic
text: should have a package comment
- linters:
- revive
path: pkg/grpc/middleware/authz
text: should have a package comment
- linters:
- revive
path: pkg/kubernetes
text: should have a package comment
- linters:
- revive
path: pkg/kubernetes/inject
text: should have a package comment
- linters:
- revive
path: pkg/provision/providers
text: should have a package comment
- linters:
- revive
path: pkg/provision/providers/qemu
text: should have a package comment
- linters:
- revive
path: config/encoder
text: should have a package comment
- linters:
- revive
path: resources/kubespan
text: should have a package comment
- linters:
- revive
path: client/config
text: should have a package comment
- linters:
- revive
path: config/merge
text: should have a package comment
- linters:
- revive
path: config/types/v1alpha1/bundle
text: should have a package comment
- linters:
- revive
path: resources/cri
text: should have a package comment
- linters:
- revive
path: resources/runtime
text: should have a package comment
- linters:
- revive
path: kernel
text: should have a package comment
- linters:
- revive
path: constants
text: should have a package comment
- linters:
- revive
path: resources/perf
text: should have a package comment
- linters:
- revive
path: resources/cluster
text: should have a package comment
- linters:
- revive
path: role
text: should have a package comment
- linters:
- revive
path: resources/hardware
text: should have a package comment
- linters:
- revive
path: config/decoder
text: should have a package comment
- linters:
- revive
path: config/internal/cis
text: should have a package comment
- linters:
- revive
path: config/types/v1alpha1/machine
text: should have a package comment
- linters:
- dupl
path: config/types/v1alpha1
- linters:
- unused
path: specs-go/config.go
- path: (.+)\.go$
text: package comment should be of the form "Package services ..."
- path: (.+)\.go$
text: ^ST1000
- path: (.+)\.go$
text: parameter '\w+' seems to be unused, consider removing or renaming it as _
paths:
- .*\\.pb\\.go$
- third_party$
- builtin$
- examples$
issues:
max-issues-per-linter: 0
max-same-issues: 0
uniq-by-line: true
new: false
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
settings:
gci:
sections:
- standard
- default
- prefix(github.com/siderolabs/talos)
exclusions:
generated: lax
paths:
- .*\\.pb\\.go$
- third_party$
- builtin$
- examples$