-
Notifications
You must be signed in to change notification settings - Fork 619
Expand file tree
/
Copy path.golangci.yml
More file actions
234 lines (231 loc) · 5.01 KB
/
.golangci.yml
File metadata and controls
234 lines (231 loc) · 5.01 KB
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
version: "2"
run:
concurrency: 6
timeout: 5m
issues:
# Maximum issues count per one linter.
# Set to 0 to disable.
# Default: 50
max-issues-per-linter: 0
# Maximum count of issues with the same text.
# Set to 0 to disable.
# Default: 3
max-same-issues: 0
new-from-rev: ""
linters:
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
- contextcheck
- copyloopvar
- dogsled
- durationcheck
- err113
- errchkjson
- errname
- errorlint
- exhaustive
- forbidigo
- gocheckcompilerdirectives
- gochecknoinits
- gochecksumtype
- gocognit
- goconst
- gocritic
- gocyclo
- godot
- godox
- goheader
# manage use of replace, retract and exclude directives (see https://github.com/ossf/scorecard/pull/3440#issuecomment-1708904830)
# https://golangci-lint.run/usage/linters/#gomoddirectives
- gomoddirectives
- gomodguard
- goprintffuncname
- gosec
- gosmopolitan
- lll
- loggercheck
- makezero
- mirror
- misspell
- musttag
- nakedret
- nestif
- nilerr
- nilnesserr
- noctx
- nolintlint
- paralleltest
- predeclared
- protogetter
- reassign
- recvcheck
- rowserrcheck
- spancheck
- sqlclosecheck
- staticcheck
- testableexamples
- testifylint
- thelper
- tparallel
- unconvert
- usestdlibvars
- usetesting
- whitespace
- wrapcheck
- zerologlint
disable:
- exhaustruct # initializing every struct makes tests longer without much benefit (spencerschrock)
- testpackage # tests don't need their own package (spencerschrock)
settings:
errcheck:
check-type-assertions: true
check-blank: true
exhaustive:
# https://golangci-lint.run/usage/linters/#exhaustive
default-signifies-exhaustive: true
forbidigo:
forbid:
- pattern: "^fmt\\.Print.*$"
msg: "Do not commit print statements. Output to stdout interferes with users who redirect JSON results to files."
gocritic:
disable-all: true
enabled-checks:
# Diagnostic
- appendAssign
- argOrder
- badCall
- badCond
- caseOrder
- codegenComment
- commentedOutCode
- deprecatedComment
- dupArg
- dupBranchBody
- dupCase
- dupSubExpr
- exitAfterDefer
- flagDeref
- flagName
- mapKey
- nilValReturn
- octalLiteral
- offBy1
- sloppyLen
- sloppyTypeAssert
- weakCond
# Performance
- appendCombine
- hugeParam
- rangeExprCopy
- rangeValCopy
# Style
- assignOp
- boolExprSimplify
- captLocal
- commentedOutImport
- commentFormatting
- defaultCaseOrder
- docStub
- elseif
- emptyFallthrough
- hexLiteral
- ifElseChain
- methodExprCall
- newDeref
- regexpMust
- singleCaseSwitch
- switchTrue
- typeAssertChain
- typeSwitchVar
- underef
- unlabelStmt
- unlambda
- unslice
- valSwap
- wrapperFunc
# Opinionated
- builtinShadow
- importShadow
- initClause
- nestingReduce
- paramTypeCombine
- ptrToRefParam
- typeUnparen
- unnecessaryBlock
godox:
keywords:
- BUG
- FIXME
- HACK
gosec:
excludes:
# TODO investigate and fix separately
- G115 # integer overflow conversion
- G703
- G704
- G705
- G706
govet:
enable:
- fieldalignment
nolintlint:
# `//nolint` should mention specific linter such as `//nolint:my-linter`
# Overly broad directives can hide unrelated issues
require-specific: true
staticcheck:
checks:
- "all"
- "-QF1003" # switch vs if/elif is style decision
wrapcheck:
ignore-package-globs:
- github.com/ossf/scorecard/v5/checks/fileparser
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- err113
- funlen
- goconst
- gocyclo
- lll
- wrapcheck
path: (.+)_test\.go
# probes must register via init
- linters:
- gochecknoinits
path: probes/.+/impl.go
# probes also break package naming conventions
- linters:
- staticcheck
path: probes/.+/.+.go
text: "ST1003:"
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
settings:
gci:
sections:
- standard
- default
- prefix(github.com/ossf/scorecard)
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$