-
Notifications
You must be signed in to change notification settings - Fork 18
/
.golangci.yml
167 lines (164 loc) · 4.53 KB
/
.golangci.yml
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
# Options for analysis running.
run:
go: "1.22"
skip-files:
- ".*_test\\.go$"
allow-parallel-runners: true
issues:
include:
- EXC0012
- EXC0014
exclude-rules:
- path: _test\.go
linters:
- testpackage
- gochecknoglobals
- path: internal/controllers/import_controller(_v3)?\.go
linters:
- dupl
- path: exp/etcdrestore/controllers/.*.go
linters:
- dupl
- text: var-naming
linters:
- revive
- text: ST1003
linters:
- stylecheck
- linters:
- revive
text: "exported: exported method .*\\.(Reconcile|SetupWithManager|SetupWebhookWithManager) should have comment or be unexported"
path: exp/etcdrestore/controllers/.*.go
- path: exp/etcdrestore/controllers/.*.go
linters:
- unused
linters-settings:
funlen:
lines: 110
statements: 60
lll:
line-length: 150
goimports:
local-prefixes: github.com/rancher/turtles
gci:
custom-order: true
sections:
- "standard"
- "blank"
- "dot"
- "default"
- "prefix(sigs.k8s.io/cluster-api)"
- "prefix(github.com/rancher/turtles)"
wsl:
force-err-cuddling: false
importas:
no-unaliased: true
alias:
# Kubernetes
- pkg: k8s.io/api/core/v1
alias: corev1
- pkg: k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1
alias: apiextensionsv1
- pkg: k8s.io/apimachinery/pkg/apis/meta/v1
alias: metav1
- pkg: k8s.io/apimachinery/pkg/api/errors
alias: apierrors
- pkg: k8s.io/apimachinery/pkg/util/runtime
alias: utilruntime
- pkg: k8s.io/client-go/kubernetes/scheme
alias: clientgoscheme
# Rancher Turtles
- pkg: github.com/rancher/turtles/util/naming
alias: turtlesnaming
- pkg: github.com/rancher/turtles/api/rancher/provisioning/v1
alias: provisioningv1
- pkg: github.com/rancher/turtles/api/rancher/management/v3
alias: managementv3
# Controller Runtime
- pkg: sigs.k8s.io/controller-runtime
alias: ctrl
# CAPI
- pkg: sigs.k8s.io/cluster-api/api/v1beta1
alias: clusterv1
revive:
rules:
# The following rules are recommended https://github.com/mgechev/revive#recommended-configuration
- name: blank-imports
- name: context-as-argument
- name: context-keys-type
- name: dot-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: exported
- name: if-return
- name: increment-decrement
- name: var-naming
- name: var-declaration
- name: package-comments
- name: range
- name: receiver-naming
- name: time-naming
- name: unexported-return
- name: indent-error-flow
- name: errorf
- name: empty-block
- name: superfluous-else
- name: unused-parameter
- name: unreachable-code
- name: redefines-builtin-id
#
# Rules in addition to the recommended configuration above.
#
- name: bool-literal-in-expr
- name: constant-logical-expr
goheader:
template: |-
Copyright © 2023 - {{ year }} SUSE LLC
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.
linters:
enable-all: true
disable:
- nolintlint
- tagliatelle
- exhaustruct
- exhaustive
- exhaustivestruct
- maligned
- funlen
- wrapcheck
- goerr113
- paralleltest
- varnamelen
- cyclop
- gochecknoglobals
- gochecknoinits
- nonamedreturns
- gocritic
- nlreturn
- gomnd
- ireturn
- depguard
- containedctx
- godox
# The following are all deprecated linters
- deadcode
- ifshort
- varcheck
- scopelint
- interfacer
- structcheck
- golint
- nosnakecase
# Disabled because of generics
- rowserrcheck
- sqlclosecheck
- wastedassign