-
Notifications
You must be signed in to change notification settings - Fork 649
/
Copy path.golangci.yml
268 lines (249 loc) · 8.42 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
version: "2"
run:
modules-download-mode: readonly
issues:
max-issues-per-linter: 0
max-same-issues: 0
linters:
default: none
enable:
# 1. This is the default enabled set of golanci
# We should consider enabling errcheck
# - errcheck
- govet
- ineffassign
- staticcheck
- unused
# 2. These are not part of the default set
# Important to prevent import of certain packages
- depguard
# Removes unnecessary conversions
- unconvert
# Flag common typos
- misspell
# A meta-linter seen as a good replacement for golint
- revive
# Gocritic
- gocritic
# 3. We used to use these, but have now removed them
# Use of prealloc is generally premature optimization and performance profiling should be done instead
# https://golangci-lint.run/usage/linters/#prealloc
# - prealloc
# Provided by revive in a better way
# - nakedret
settings:
staticcheck:
checks:
# Below is the default set
- "all"
- "-ST1000"
- "-ST1003"
- "-ST1016"
- "-ST1020"
- "-ST1021"
- "-ST1022"
##### TODO: fix and enable these
# 4 occurrences.
# Use fmt.Fprintf(x, ...) instead of x.Write(fmt.Sprintf(...)) https://staticcheck.dev/docs/checks#QF1012
- "-QF1012"
# 6 occurrences.
# Apply De Morgan’s law https://staticcheck.dev/docs/checks#QF1001
- "-QF1001"
# 10 occurrences.
# Convert if/else-if chain to tagged switch https://staticcheck.dev/docs/checks#QF1003
- "-QF1003"
##### These have been vetted to be disabled.
# 55 occurrences. Omit embedded fields from selector expression https://staticcheck.dev/docs/checks#QF1008
# Usefulness is questionable.
- "-QF1008"
revive:
enable-all-rules: true
rules:
# See https://revive.run/r
##### P0: we should do it ASAP.
- name: max-control-nesting
# 10 occurences (at default 5). Deep nesting hurts readibility.
arguments: [7]
- name: deep-exit
# 11 occurrences. Do not exit in random places.
disabled: true
- name: unchecked-type-assertion
# 14 occurrences. This is generally risky and encourages bad coding for newcomers.
disabled: true
- name: bare-return
# 31 occurrences. Bare returns are just evil, very unfriendly, and make reading and editing much harder.
disabled: true
- name: import-shadowing
# 44 occurrences. Shadowing makes things prone to errors / confusing to read.
disabled: true
- name: use-errors-new
# 84 occurrences. Improves error testing.
disabled: true
##### P1: consider making a dent on these, but not critical.
- name: argument-limit
# 4 occurrences (at default 8). Long windy arguments list for functions are hard to read. Use structs instead.
arguments: [12]
- name: unnecessary-stmt
# 5 occurrences. Increase readability.
disabled: true
- name: defer
# 7 occurrences. Confusing to read for newbies.
disabled: true
- name: confusing-naming
# 10 occurrences. Hurts readability.
disabled: true
- name: early-return
# 10 occurrences. Would improve readability.
disabled: true
- name: function-result-limit
# 12 occurrences (at default 3). A function returning many results is probably too big.
arguments: [7]
- name: function-length
# 155 occurrences (at default 0, 75). Really long functions should really be broken up in most cases.
arguments: [0, 400]
- name: cyclomatic
# 204 occurrences (at default 10)
arguments: [100]
- name: unhandled-error
# 222 occurrences. Could indicate failure to handle broken conditions.
disabled: true
- name: cognitive-complexity
arguments: [197]
# 441 occurrences (at default 7). We should try to lower it (involves significant refactoring).
##### P2: nice to have.
- name: max-public-structs
# 7 occurrences (at default 5). Might indicate overcrowding of public API.
arguments: [21]
- name: confusing-results
# 13 occurrences. Have named returns when the type stutters.
# Makes it a bit easier to figure out function behavior just looking at signature.
disabled: true
- name: comment-spacings
# 50 occurrences. Makes code look less wonky / ease readability.
disabled: true
- name: use-any
# 30 occurrences. `any` instead of `interface{}`. Cosmetic.
disabled: true
- name: empty-lines
# 85 occurrences. Makes code look less wonky / ease readability.
disabled: true
- name: package-comments
# 100 occurrences. Better for documentation...
disabled: true
- name: exported
# 577 occurrences. Forces documentation of any exported symbol.
disabled: true
###### Permanently disabled. Below have been reviewed and vetted to be unnecessary.
- name: line-length-limit
# Formatter `golines` takes care of this.
disabled: true
- name: nested-structs
# 5 occurrences. Trivial. This is not that hard to read.
disabled: true
- name: flag-parameter
# 52 occurrences. Not sure if this is valuable.
disabled: true
- name: unused-parameter
# 505 occurrences. A lot of work for a marginal improvement.
disabled: true
- name: unused-receiver
# 31 occurrences. Ibid.
disabled: true
- name: add-constant
# 2605 occurrences. Kind of useful in itself, but unacceptable amount of effort to fix
disabled: true
depguard:
rules:
no-patent:
# do not link in golang-lru anywhere (problematic patent)
deny:
- pkg: github.com/hashicorp/golang-lru/arc/v2
desc: patented (https://github.com/hashicorp/golang-lru/blob/arc/v2.0.7/arc/arc.go#L18)
pkg:
# pkg files must not depend on cobra nor anything in cmd
files:
- '**/pkg/**/*.go'
deny:
- pkg: github.com/spf13/cobra
desc: pkg must not depend on cobra
- pkg: github.com/spf13/pflag
desc: pkg must not depend on pflag
- pkg: github.com/spf13/viper
desc: pkg must not depend on viper
- pkg: github.com/containerd/nerdctl/v2/cmd
desc: pkg must not depend on any cmd files
gocritic:
disabled-checks:
# Below are normally enabled by default, but we do not pass
- appendAssign
- ifElseChain
- unslice
- badCall
- assignOp
- commentFormatting
- captLocal
- singleCaseSwitch
- wrapperFunc
- elseif
- regexpMust
enabled-checks:
# Below used to be enabled, but we do not pass anymore
# - paramTypeCombine
# - octalLiteral
# - unnamedResult
# - equalFold
# - sloppyReassign
# - emptyStringTest
# - hugeParam
# - appendCombine
# - stringXbytes
# - ptrToRefParam
# - commentedOutCode
# - rangeValCopy
# - methodExprCall
# - yodaStyleExpr
# - typeUnparen
# We enabled these and we pass
- nilValReturn
- weakCond
- indexAlloc
- rangeExprCopy
- boolExprSimplify
- commentedOutImport
- docStub
- emptyFallthrough
- hexLiteral
- typeAssertChain
- unlabelStmt
- builtinShadow
- importShadow
- initClause
- nestingReduce
- unnecessaryBlock
exclusions:
generated: disable
formatters:
settings:
gci:
sections:
- standard
- default
- prefix(github.com/containerd)
- localmodule
no-inline-comments: true
no-prefix-comments: true
custom-order: true
gofumpt:
extra-rules: true
golines:
max-len: 500
tab-len: 4
shorten-comments: true
enable:
- gci
- gofmt
# We might consider enabling the following:
# - gofumpt
- golines
exclusions:
generated: disable