-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy path.golangci.yml
More file actions
247 lines (247 loc) · 6.31 KB
/
.golangci.yml
File metadata and controls
247 lines (247 loc) · 6.31 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
235
236
237
238
239
240
241
242
243
244
245
246
247
version: "2"
run:
go: "1.25"
build-tags:
- dynamic
- test
linters:
default: none
enable:
- decorder
- depguard
- durationcheck
- forbidigo
- gocritic
- gosec
- govet
- ineffassign
- misspell
- revive
- staticcheck
- unconvert
- whitespace
settings:
depguard:
rules:
main:
deny:
- pkg: errors
desc: not allowed, use github.com/cockroachdb/errors
- pkg: github.com/pkg/errors
desc: not allowed, use github.com/cockroachdb/errors
- pkg: github.com/pingcap/errors
desc: not allowed, use github.com/cockroachdb/errors
- pkg: golang.org/x/xerrors
desc: not allowed, use github.com/cockroachdb/errors
- pkg: github.com/go-errors/errors
desc: not allowed, use github.com/cockroachdb/errors
- pkg: io/ioutil
desc: ioutil is deprecated after 1.16, 1.17, use os and io package instead
- pkg: github.com/tikv/client-go/rawkv
desc: not allowed, use github.com/tikv/client-go/v2/txnkv
- pkg: github.com/tikv/client-go/v2/rawkv
desc: not allowed, use github.com/tikv/client-go/v2/txnkv
- pkg: github.com/gogo/protobuf
desc: not allowed, gogo protobuf is deprecated
- pkg: github.com/golang/protobuf/proto
desc: not allowed, protobuf v1 is deprecated, use google.golang.org/protobuf/proto instead
- pkg: github.com/pingcap/log
desc: not allowed, use github.com/milvus-io/milvus/pkg/v2/log
forbidigo:
forbid:
- pattern: ^time\.Tick$
- pattern: return merr\.Err[a-zA-Z]+
- pattern: merr\.Wrap\w+\(\)\.Error\(\)
- pattern: '\.(ErrorCode|Reason) = '
- pattern: Reason:\s+\w+\.Error\(\)
- pattern: errors.New\((.+)\.GetReason\(\)\)
- pattern: commonpb\.Status\{[\s\n]*ErrorCode:[\s\n]*.+[\s\S\n]*?\}
- pattern: os\.Open\(.+\)
- pattern: os\.ReadFile\(.+\)
- pattern: os\.WriteFile\(.+\)
- pattern: runtime.NumCPU
- pattern: runtime.GOMAXPROCS(0)
gocritic:
enabled-tags: []
enabled-checks:
- ruleguard
settings:
ruleguard:
rules: rules.go
govet:
enable:
- nilness
disable:
- printf
misspell:
locale: US
revive:
rules:
- name: unused-parameter
disabled: true
- name: var-naming
arguments:
- - ID
- IDS
severity: warning
disabled: false
- name: context-as-argument
arguments:
- allowTypesBefore: '*testing.T'
severity: warning
disabled: false
- name: datarace
severity: warning
disabled: false
- name: duplicated-imports
severity: warning
disabled: false
- name: waitgroup-by-value
severity: warning
disabled: false
- name: indent-error-flow
arguments:
- preserveScope
severity: warning
disabled: false
- name: range-val-in-closure
severity: warning
disabled: false
- name: range-val-address
severity: warning
disabled: false
- name: string-of-int
severity: warning
disabled: false
exclusions:
generated: lax
rules:
- linters:
- forbidigo
path: .+_test\.go
- path: mocks\/(.)+mock_(.+)\.go
text: don't use an underscore in package name
# Keep existing v1 exclusions
- path: (.+)\.go$
text: should have a package comment
- path: (.+)\.go$
text: should have comment
- path: (.+)\.go$
text: should be of the form
- path: (.+)\.go$
text: should not use dot imports
- path: (.+)\.go$
text: which can be annoying to use
- path: (.+)\.go$
text: G102
- path: (.+)\.go$
text: G103
- path: (.+)\.go$
text: G104
- path: (.+)\.go$
text: G301
- path: (.+)\.go$
text: G302
- path: (.+)\.go$
text: G304
- path: (.+)\.go$
text: G307
- path: (.+)\.go$
text: G402
- path: (.+)\.go$
text: G404
- path: (.+)\.go$
text: SA1019
- path: (.+)\.go$
text: SA5001
- path: (.+)\.go$
text: sloppyLen
- path: (.+)\.go$
text: dupSubExpr
- path: (.+)\.go$
text: assignOp
- path: (.+)\.go$
text: ifElseChain
- path: (.+)\.go$
text: elseif
- path: (.+)\.go$
text: commentFormatting
- path: (.+)\.go$
text: exitAfterDefer
- path: (.+)\.go$
text: captLocal
- path: (.+)\.go$
text: singleCaseSwitch
- path: (.+)\.go$
text: typeSwitchVar
- path: (.+)\.go$
text: indent-error-flow
- path: (.+)\.go$
text: appendAssign
- path: (.+)\.go$
text: deprecatedComment
- path: (.+)\.go$
text: SA9009
- path: (.+)\.go$
text: SA1006
- path: (.+)\.go$
text: S1009
- path: (.+)\.go$
text: offBy1
- path: (.+)\.go$
text: unslice
- path: (.+)\.go$
text: G115
paths:
- (^|/)partial_search_test\.go$
- ^build/
- ^configs/
- ^deployments/
- ^docs/
- ^scripts/
- ^internal/core/
- ^cmake_build/
- ^mmap/
- ^data/
- ^ci/
- ^third_party/
- ^builtin/
- ^examples/
issues:
max-issues-per-linter: 0
max-same-issues: 0
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
settings:
gci:
sections:
- standard
- default
- prefix(github.com/milvus-io)
custom-order: true
gofumpt:
module-path: github.com/milvus-io
goimports:
local-prefixes:
- github.com/milvus-io
exclusions:
generated: lax
paths:
- (^|/)partial_search_test\.go$
- ^build/
- ^configs/
- ^deployments/
- ^docs/
- ^scripts/
- ^internal/core/
- ^cmake_build/
- ^mmap/
- ^data/
- ^ci/
- ^third_party/
- ^builtin/
- ^examples/