forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yml
More file actions
220 lines (166 loc) · 6.13 KB
/
.golangci.yml
File metadata and controls
220 lines (166 loc) · 6.13 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
run:
timeout: 6m
go: "1.25"
tests: true
issues:
max-same-issues: 0
max-issues-per-linter: 0
uniq-by-line: true
exclude-dirs: # skip auto gen folders
- "client/*"
- "tools/tf2openapi/generated/*"
- "openapi/"
exclude-files:
- "zz_generated.*.go"
output:
formats:
- format: "colored-line-number"
print-issued-lines: true
print-linter-name: true
path-prefix: ""
sort-results: true
# REF: https://golangci-lint.run/usage/linters/
linters:
disable-all: true
enable:
# Check for pass []any as any in variadic func(...any).
- asasalint
# Dangerous unicode characters
- bidichk
# Checks whether HTTP response body is closed successfully.
- bodyclose
# Canonicalheader checks whether net/http.Header uses canonical header.
- canonicalheader
# Containedctx is a linter that detects struct contained context.Context
# field.
- containedctx
# Check whether the function uses a non-inherited context.
- contextcheck
# Copyloopvar is a linter detects places where loop variables are copied.
- copyloopvar
# Check declaration order of types, consts, vars and funcs.
- decorder
# Checks assignments with too many blank identifiers (e.g. x, , , _, := f()).
- dogsled
# Checks for duplicate words in the source code.
- dupword
# Check for two durations multiplied together.
- durationcheck
# Checks that sentinel errors are prefixed with the Err- and error types
# are suffixed with the -Error.
- errname
# Errorlint is a linter for that can be used to find code that will cause
# problems with the error wrapping scheme introduced in Go 1.13.
- errorlint
# Detects functions from golang.org/x/exp/ that can be replaced by std functions.
- exptostd
# Detects nested contexts in loops. https://gabnotes.org/fat-contexts/
- fatcontext
# Enforces standards of using ginkgo and gomega.
- ginkgolinter
# Provides diagnostics that check for bugs, performance and style issues.
# Extensible without recompilation through dynamic rules.
# Dynamic rules are written declaratively with AST patterns, filters,
# report message and optional suggestion.
- gocritic
# Gofmt checks whether code was gofmt-ed. By default this tool runs
# with -s option to check for code simplification.
- gofmt
# Gofumpt checks whether code was gofumpt-ed.
- gofumpt
# Check import statements are formatted according to the 'goimport'
# command. Reformat imports in autofix mode.
- goimports
# Inspects source code for security problems.
- gosec
# Linter that specializes in simplifying code.
- gosimple
# Vet examines Go source code and reports suspicious constructs.
# It is roughly the same as 'go vet' and uses its passes.
- govet
# Enforces consistent import aliases.
- importas
# Detects when assignments to existing variables are not used.
- ineffassign
# Intrange is a linter to find places where for loops could make use of
# an integer range.
- intrange
# Checks key value pairs for common logger libraries (kitlog,klog,logr,zap).
- loggercheck
# Finds slice declarations with non-zero initial length.
- makezero
# Reports use of unnecessary []byte/string conversion calls
- mirror
# Finds commonly misspelled English words.
- misspell
# Checks that functions with naked returns are not longer than a maximum size (can be zero).
- nakedret
# Finds the code that returns nil even if it checks that the error is not nil.
- nilerr
# Reports constructs that checks for err != nil, but returns a different nil value error.
# Powered by nilness and nilerr.
- nilnesserr
# Reports ill-formed or insufficient nolint directives.
- nolintlint
# Checks that fmt.Sprintf can be replaced with a faster alternative.
- perfsprint
# Finds slice declarations that could potentially be pre-allocated.
- prealloc
# Reports direct reads from proto message fields when getters should be used.
- protogetter
# Checks that package variables are not reassigned.
- reassign
# Checks for receiver type consistency.
- recvcheck
# Fast, configurable, extensible, flexible, and beautiful linter for Go. Drop-in replacement of golint.
# - revive
# Checks for mistakes with OpenTelemetry/Census spans.
- spancheck
# Stylecheck is a replacement for golint.
# - stylecheck
# It's a set of rules from staticcheck. It's not the same thing as the staticcheck binary.
- staticcheck
# Checks usage of github.com/stretchr/testify.
- testifylint
- typecheck
# Remove unnecessary type conversions.
- unconvert
# Reports unused function parameters and results in your code.
- unparam
# A linter that detect the possibility to use variables/constants from the
# Go standard library.
- usestdlibvars
# Reports uses of functions with replacement inside the testing package.
- usetesting
# Finds wasted assignment statements.
- wastedassign
# Whitespace is a linter that checks for unnecessary newlines at the start
# and end of functions, if, for, etc.
- whitespace
linters-settings:
goimports:
local-prefixes: "github.com/kserve/kserve"
gosec:
# specify configuration of gosec rules: https://github.com/securego/gosec#available-rules
config:
# maximum allowed permissions for os.OpenFile and os.Chmod
# default: "0600"
G302: "0640"
# maximum allowed permissions for os.WriteFile and ioutil.WriteFile
G306: "0640"
importas:
alias:
- pkg: "github.com/kserve/kserve/pkg/apis/serving/v1beta1"
alias: ""
- pkg: "github.com/kserve/kserve/pkg/apis/serving/v1alpha1"
alias: ""
- pkg: "k8s.io/api/core/v1"
alias: "corev1"
- pkg: "k8s.io/apimachinery/pkg/apis/meta/v1"
alias: "metav1"
- pkg: "sigs.k8s.io/controller-runtime"
alias: "ctrl"
- pkg: "sigs.k8s.io/controller-runtime/runtime"
alias: "runtime"
- pkg: "sigs.k8s.io/gateway-api/apis/v1"
alias: "gwapiv1"