-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy path.golangci.yaml
More file actions
200 lines (199 loc) · 5 KB
/
Copy path.golangci.yaml
File metadata and controls
200 lines (199 loc) · 5 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
# Copyright 2023-2025 The Oxia Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version: "2"
linters:
enable:
- asasalint
- asciicheck
- bodyclose
- contextcheck
- copyloopvar
- errname
- errorlint
- goconst
- gocritic
- godot
- gomoddirectives
- gosec
- misspell
- nakedret
- nilerr
- nilnil
- noctx
- nolintlint
- prealloc
- predeclared
- promlinter
- reassign
- revive
- rowserrcheck
- sqlclosecheck
- testableexamples
- thelper
- tparallel
- unconvert
- unparam
- usestdlibvars
- wastedassign
settings:
goconst:
ignore-string-values: "localhost:0"
gosec:
excludes:
- G115
- G703
revive:
enable-all-rules: true
rules:
- name: var-naming
arguments:
- - ID
- RPC
- - ""
- - upperCaseConst: false
severity: warning
disabled: false
- name: line-length-limit
arguments:
- 120
severity: warning
disabled: false
- name: add-constant
arguments:
- allowFloats: 0.0,0.,0.5,0.50,0.95,0.99,0.999,1.0,1.,2.0,2.,80.0,100.0
allowInts: 0,1,2,3,4,5,6,7,8,9,10,11,16,17,20,22,32,64,100,128,1000,1024,0644,0755,0600,1000000,3600,500,900,990,999
allowStrs: '"","count","not implemented"'
ignoreFuncs: slog\.*,metrics\.*,fmt\.*
maxLitCount: "3"
severity: warning
disabled: false
- name: cognitive-complexity
arguments:
- 25
severity: warning
disabled: false
- name: cyclomatic
arguments:
- 17
severity: warning
disabled: false
- name: function-length
arguments:
- 10
- 0
severity: warning
disabled: true
- name: line-length-limit
arguments:
- 80
severity: warning
disabled: true
- name: function-result-limit
arguments:
- 5
severity: warning
disabled: false
- name: flag-parameter
severity: warning
disabled: false
- name: deep-exit
severity: warning
disabled: true
- name: max-public-structs
arguments:
- 3
severity: warning
disabled: true
- name: bare-return
severity: warning
disabled: false
gomoddirectives:
replace-local: true
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- contextcheck
- gosec
- noctx
- unparam
path: _test\.go
- linters:
- contextcheck
path: \.go
text: Non-inherited new context
- linters:
- gomoddirectives
text: github.com/samber/slog-common
- linters:
- gocritic
path: _test\.go
text: exitAfterDefer|singleCaseSwitch
- linters:
- revive
path: _test\.go
text: add-constant|cognitive-complexity|unused-parameter|unused-receiver|function-length|line-length-limit|unhandled-error|deep-exit|unchecked-type-assertion|cyclomatic
- linters:
- revive
path: \.go
text: confusing-naming.*only by capitalization.*
- linters:
- gosec
path: maelstrom/
- linters:
- revive
path: maelstrom/
text: unchecked-type-assertion|unhandled-error|unused-receiver|unused-parameter|add-constant|cyclomatic|cognitive-complexity
- linters:
- revive
path: _grpc\.go
text: blank-imports
- linters:
- revive
path: oxiad/coordinator/metadata/common/
text: avoid meaningless package names
- linters:
- revive
text: "avoid package names that conflict with Go standard library"
- linters:
- goconst
path: (.+)_test\.go
paths:
- pkg/generated
- third_party$
- builtin$
- examples$
issues:
max-issues-per-linter: 50
max-same-issues: 3
fix: true
formatters:
enable:
- goimports
settings:
goimports:
local-prefixes:
- github.com/oxia-db/oxia
exclusions:
generated: lax
paths:
- pkg/generated
- third_party$
- builtin$
- examples$