-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.golangci.yaml
197 lines (197 loc) · 5.37 KB
/
.golangci.yaml
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
version: "2"
run:
timeout: 8m
linters:
enable:
- asciicheck
- bodyclose
- copyloopvar
- dogsled
- durationcheck
- errorlint
- exhaustive
- forbidigo
- gocritic
- gomodguard
- gosec
- importas
- loggercheck
- misspell
- nakedret
- nilerr
- nolintlint
- predeclared
- revive
- testifylint
- unconvert
- unparam
- usetesting
- wastedassign
settings:
staticcheck:
checks:
- all
# Incorrect or missing package comment.
# https://staticcheck.dev/docs/checks/#ST1000
- -ST1000
# Incorrectly formatted error string.
# https://staticcheck.dev/docs/checks/#ST1005
- -ST1005
exhaustive:
default-signifies-exhaustive: true
forbidigo:
forbid:
- pattern: ^.*Dataplane[^G].*$
msg: Please use camel case 'DataPlane' instead of 'Dataplane'
- pattern: ^.*Controlplane.*$
msg: Please use camel case 'ControlPlane' instead of 'Controlplane'
gomodguard:
blocked:
modules:
- golang.org/x/exp:
recommendations:
- maps
- slices
- github.com/samber/lo
- github.com/pkg/errors:
recommendations:
- fmt
- errors
- github.com/sirupsen/logrus:
recommendations:
- sigs.k8s.io/controller-runtime/pkg/log
- go.uber.org/zap/zapcore
govet:
disable:
- fieldalignment
- shadow
enable-all: true
importas:
alias:
- pkg: k8s.io/api/([a-z])/(v[\w\d]+)
alias: ${1}${2}
- pkg: k8s.io/apimachinery/pkg/apis/meta/v1
alias: metav1
- pkg: k8s.io/apimachinery/pkg/watch
alias: apiwatch
- pkg: sigs.k8s.io/gateway-api/apis/(v[\w\d]+)
alias: gateway${1}
- pkg: sigs.k8s.io/controller-runtime/pkg/log
alias: ctrllog
- pkg: github.com/kong/kubernetes-configuration/api/common/(v[\w\d]+)
alias: common${1}
- pkg: github.com/kong/kubernetes-configuration/api/gateway-operator/(v[\w\d]+)
alias: operator${1}
- pkg: github.com/kong/kubernetes-configuration/api/configuration/(v[\w\d]+)
alias: configuration${1}
- pkg: github.com/kong/kubernetes-configuration/api/incubator/(v[\w\d]+)
alias: incubator${1}
- pkg: github.com/kong/kubernetes-configuration/api/konnect/(v[\w\d]+)
alias: konnect${1}
- pkg: github.com/Kong/sdk-konnect-go/models/components
alias: sdkkonnectcomp
- pkg: github.com/Kong/sdk-konnect-go/models/operations
alias: sdkkonnectops
- pkg: github.com/Kong/sdk-konnect-go/models/sdkerrors
alias: sdkkonnecterrs
- pkg: github.com/kong/gateway-operator/controller/konnect/ops/sdk
alias: sdkops
- pkg: github.com/kong/gateway-operator/controller/konnect/ops/sdk/mocks
alias: sdkmocks
- pkg: github.com/kong/gateway-operator/internal/types
alias: gwtypes
- pkg: github.com/kong/gateway-operator/pkg/utils/kubernetes
alias: k8sutils
- pkg: github.com/kong/gateway-operator/pkg/utils/kubernetes/resources
alias: k8sresources
no-unaliased: true
revive:
rules:
- name: errorf
severity: warning
disabled: false
- name: error-strings
severity: warning
disabled: false
- name: error-naming
severity: warning
disabled: false
- name: duplicated-imports
severity: warning
disabled: false
- name: empty-block
severity: warning
disabled: false
- name: exported
arguments:
- checkPrivateReceivers
- disableStutteringCheck
severity: warning
disabled: false
- name: context-as-argument
disabled: true
testifylint:
enable-all: true
disable:
- error-is-as
usetesting:
os-temp-dir: true
exclusions:
generated: lax
presets:
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- revive
path: internal/
text: 'exported: exported'
- linters:
- revive
path: test/integration
text: 'exported: exported'
- linters:
- revive
path: test/e2e
text: 'exported: exported'
- linters:
- revive
path: controller/konnect/ops/.*_mock\.go
text: 'exported: exported'
- linters:
- forbidigo
text: use of `.*(Create|Delete)Dataplane.+` forbidden because "Please use camel case
- linters:
- gosec
path: .*_test\.go
text: Use of weak random number generator
paths:
- pkg/clientset
- config/
- third_party$
- builtin$
- examples$
issues:
max-same-issues: 0
fix: true
formatters:
enable:
- gci
- gofmt
- goimports
settings:
gci:
sections:
- standard
- default
- prefix(github.com/kong/kubernetes-configuration)
- prefix(github.com/kong/gateway-operator)
exclusions:
generated: lax
paths:
- pkg/clientset
- config/
- third_party$
- builtin$
- examples$