-
Notifications
You must be signed in to change notification settings - Fork 453
/
.golangci.yml
358 lines (334 loc) · 13.9 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
# options for analysis running
run:
# default concurrency is a available CPU number
# concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
deadline: 10m
# exit code when at least one issue was found, default is 1
issues-exit-code: 1
# include test files or not, default is true
tests: true
# list of build tags, all linters use it. Default is empty list.
build-tags:
- big
- compatibility
- dtest
- integration
# which dirs to skip: they won't be analyzed;
# can use regexp here: generated.*, regexp is applied on full path;
# default value is empty list, but next dirs are always skipped independently
# from this option's value:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
skip-dirs:
- generated/.*
# There is some very weird golangci-lint bug that causes analysis to fail on the
# eventlog_server_test.go file (perhaps caused by https://github.com/golangci/golangci-lint/issues/995).
# To avoid sporadic CI failures we exclude the file from analysis for the time being.
# In order to exclude the file from analysis, and not just any lints in it, we need
# to put the file in a separate directory since although golangci-lint skips issues
# from files in the skip-files list, it still runs analysis on them.
- eventlog/test$
# which files to skip: they will be analyzed, but issues from them
# won't be reported. Default value is empty list, but there is
# no need to include all autogenerated files, we confidently recognize
# autogenerated files. If it's not please let us know.
skip-files:
- ".*_gen.go$"
# by default isn't set. If set we pass it to "go list -mod={option}". From "go help modules":
# If invoked with -mod=readonly, the go command is disallowed from the implicit
# automatic updating of go.mod described above. Instead, it fails when any changes
# to go.mod are needed. This setting is most useful to check that go.mod does
# not need updates, such as in a continuous integration and testing system.
# If invoked with -mod=vendor, the go command assumes that the vendor
# directory holds the correct copies of dependencies and ignores
# the dependency descriptions in go.mod.
# modules-download-mode: readonly|release|vendor
modules-download-mode: readonly
# output configuration options
output:
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
format: colored-line-number
# print lines of code with issue, default is true
print-issued-lines: true
# print linter name in the end of issue text, default is true
print-linter-name: true
# all available settings of specific linters
linters-settings:
govet:
# report about shadowed variables
check-shadowing: true
maligned:
# print struct with more effective memory layout or not, false by default
suggest-new: true
dupl:
# tokens count to trigger issue, 150 by default
threshold: 100
goconst:
# minimal length of string constant, 3 by default
min-len: 3
# minimal occurrences count to trigger, 3 by default
min-occurrences: 3
# ignore tests
ignore-tests: true
depguard:
list-type: blacklist
include-go-root: false
packages:
- github.com/sirupsen/logrus
- github.com/golang/protobuf/jsonpb
- google.golang.org/protobuf/encoding/protojson
- github.com/golang/protobuf/proto
- google.golang.org/protobuf/proto
- github.com/tj/assert
packages-with-error-messages:
# specify an error message to output when a blacklisted package is used
github.com/sirupsen/logrus: "logging is allowed only by logutils.Log"
github.com/golang/protobuf/jsonpb: "replace with github.com/gogo/protobuf/jsonpb"
google.golang.org/protobuf/encoding/protojson: "replace with github.com/gogo/protobuf/jsonpb"
github.com/golang/protobuf/proto: "replace with github.com/gogo/protobuf/proto"
google.golang.org/protobuf/proto: "replace with github.com/gogo/protobuf/proto"
github.com/tj/assert: "use github.com/stretchr/testify/assert"
misspell:
# Correct spellings using locale preferences for US or UK.
# Default is to use a neutral variety of English.
# Setting locale to US will correct the British spelling of 'colour' to 'color'.
locale: US
ignore-words:
- someword
exhaustive:
default-signifies-exhaustive: true
lll:
# max line length, lines longer will be reported. Default is 120.
# '\t' is counted as 1 character by default, and can be changed with the tab-width option
line-length: 120
# tab width in spaces. Default to 1.
tab-width: 1
unused:
# treat code as a program (not a library) and report unused exported identifiers; default is false.
# XXX: if you enable this setting, unused will report a lot of false-positives in text editors:
# if it's called for subdir of a project it can't find funcs usages. All text editor integrations
# with golangci-lint call it on a directory with the changed file.
check-exported: false
unparam:
# Inspect exported functions, default is false. Set to true if no external program/library imports your code.
# XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
# if it's called for subdir of a project it can't find external interfaces. All text editor integrations
# with golangci-lint call it on a directory with the changed file.
check-exported: false
nakedret:
# make an issue if func has more lines of code than this setting and it has naked returns; default is 30
max-func-lines: 30
prealloc:
# XXX: we don't recommend using this linter before doing performance profiling.
# For most programs usage of prealloc will be a premature optimization.
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them.
# True by default.
simple: true
range-loops: true # Report preallocation suggestions on range loops, true by default
for-loops: false # Report preallocation suggestions on for loops, false by default
gocritic:
# Which checks should be enabled; can't be combined with 'disabled-checks';
# See https://go-critic.github.io/overview#checks-overview
# To check which checks are enabled run `GL_DEBUG=gocritic golangci-lint run`
# By default list of stable checks is used.
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint` run to see all tags and checks.
# Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags".
enabled-tags:
- performance
disabled-checks:
# These both suggest using pointers for large value structs
# but cause significant heap allocations in place which causes
# fairly heap allocations. Better to pay fast memcpy and rely
# on the stack being cheap to allocate than use heap allocations
# as a general rule of thumb.
- hugeParam
- rangeValCopy
- ifElseChain
enabled-checks:
# temp disabled, something wrong on go 1.18
# - ruleguard
settings: # settings passed to gocritic
captLocal: # must be valid enabled check name
paramsOnly: true
# ruleguard:
# rules: "src/cmd/tools/linter/gorules/rules.go"
gci:
# gci control golang package import order and make it always deterministic
sections:
- standard
- prefix(github.com/m3db/m3)
- default
staticcheck:
# disable pkg deprecation checks.
checks: ["all", "-SA1019"]
linters:
enable:
- deadcode
- dupl
- errcheck
- exhaustive
- gci
- goconst
- gocritic
- golint
- gosimple
- govet
- ineffassign
- lll
- maligned
- megacheck
- misspell
- prealloc
- staticcheck
- structcheck
- typecheck
- unconvert
- unparam
- varcheck
enable-all: false
disable:
- gomnd
- gochecknoinits
# Globals gonna global
- gochecknoglobals
# Overly harsh about long functions
- funlen
# Linter that checks that every comment ends in a period.
- godot
# Linter that makes you always use _test packages.
- testpackage
# Overly opinionated about how to construct errors
- goerr113
# Noisy warnings about whether "nolint" directives are necessary
- nolintlint
# Deprecated project due to being prone to bad suggestions.
- interfacer
# Valid use for not explicitly setting every field when they are optional nil/empty.
- exhaustivestruct
# We allow cuddling assignment following conditions because there are valid
# logical groupings for this use-case (e.g. when evaluating config values).
- wsl
# Wrapcheck can cause errors until all callsites checking explicit error
# types like io.EOF are converted to use errors.Is instead. Re-enable this
# linter once all error checks are upgraded.
- wrapcheck
# godox prevents using TODOs or FIXMEs which can be useful for demarkation
# of future work.
- godox
# New line required before return would require a large fraction of the
# code base to need updating, it's not worth the perceived benefit.
- nlreturn
# Opinionated and sometimes wrong.
- paralleltest
# Disabled dogsled as using _, _, _ is useful in tests.
- dogsled
# There are functions with complexity required.
- gocyclo
# Doesn't buy us much being super opinionated on how to name test functions.
- thelper
# Useless, fails pretty much every file.
- varnamelen
# Accept interfaces, return structs is a geat mantra that's too late to adopt.
- ireturn
# Not a problem worthy enough to change lots of code. Also has a section named `What if I think it's bullshit?` in README.md
- nilnil
# Wants yaml tags to look like `perCpu` vs `perCPU`.
- tagliatelle
# There are valid uses for context in structs.
- containedctx
# These are new and flag a lot, need a separate evaluation:
- forcetypeassert
- errname
- promlinter
- gomoddirectives
- gofumpt
- ifshort
- wastedassign
- usestdlibvars
- testifylint
- inamedparam
- exhaustruct
- depguard
- revive
- protogetter
- gosec
- mirror
- interfacebloat
- musttag
- nonamedreturns
- stylecheck
- contextcheck
- tagalign
- gosmopolitan
- nilerr
- whitespace
- bodyclose
disable-all: false
presets:
# bodyclose, errcheck, gosec, govet, scopelint, staticcheck, typecheck
- bugs
# deadcode, ineffassign, structcheck, unparam, unused, varcheck
- unused
# gofmt, goimports
- format
# depguard, dupl, gochecknoglobals, gochecknoinits, goconst, gocritic,
# golint, gosimple, interfacer, lll, misspell, stylecheck, unconvert
- style
fast: false
issues:
# List of regexps of issue texts to exclude, empty list by default.
# But independently from this option we use default exclude patterns,
# it can be disabled by `exclude-use-default: false`. To list all
# excluded by default patterns execute `golangci-lint run --help`
exclude:
# Exclude table-driven tests from scopelint (https://github.com/golangci/golangci-lint/issues/281).
- "Using the variable on range scope `tt` in function literal"
- "Using the variable on range scope `test` in function literal"
# It's common to shadow `err` and rarely indicates a problems. See
# https://github.com/golang/go/issues/19490 for further details.
- 'shadow: declaration of "err" shadows declaration'
# We commonly expose profiling information on /debug/pprof so we need to disable the gosec
# lint for it.
- "Profiling endpoint is automatically exposed on /debug/pprof"
# We only use md5 for non-cryptographic purposes (e.g. generating ID's where we don't assume
# the ID's are cryptographicly secure).
- "Blacklisted import `crypto/md5`: weak cryptographic primitive"
# The logger is often our last option to communicate that an error occurred so if it returns
# an error we don't have an alternative to use. Since it's already unlikely that `Log` will
# return an error anyway we often skip checking the error for brevity.
- "Error return value of `\\(github.com\\/go-kit\\/kit\\/log.Logger\\).Log` is not checked"
# The caller is responsible for closing the Body of an `http.Response`. However, this step
# is usually performed in a defer function after the response has already been processed and
# so errors, which are already rare, can usually be safely ignored.
- "Error return value of `[a-zA-Z.]+.Body.Close` is not checked"
# The errcheck linter already checks for unhandled errors so we can disable the equivalent
# lint by gosec.
- "G104: Errors unhandled"
# Random numbers here are not used in a security-sensitive context.
- "G404: Use of weak random number generator (math/rand instead of crypto/rand)"
# Pointless, every time we'll just end up adding a //nolint comment on this.
- "G103: Use of unsafe calls should be audited"
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude lll issues for long lines with go:generate
- linters:
- lll
source: "^//go:generate "
# Exclude some linters from running on tests files.
# - path: _test\.go
# linters:
# - gocyclo
# - errcheck
# - dupl
# - gosec
# Independently from option `exclude` we use default exclude patterns,
# it can be disabled by this option. To list all
# excluded by default patterns execute `golangci-lint run --help`.
# Default value for this option is true.
exclude-use-default: false
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0
# Show only new issues created after git revision `REV`
new-from-rev: 30e1c10d456af9d3778288cfb7c247ecd06a4339