forked from rancher/turtles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yml
More file actions
162 lines (159 loc) · 4.16 KB
/
.golangci.yml
File metadata and controls
162 lines (159 loc) · 4.16 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
version: "2"
run:
go: "1.25"
allow-parallel-runners: true
linters:
default: all
disable:
- containedctx
- cyclop
- depguard
- err113
- exhaustive
- exhaustruct
- funlen
- gochecknoglobals
- gochecknoinits
- gocritic
- godox
- ireturn
- mnd
- noinlineerr
- nlreturn
- nolintlint
- nonamedreturns
- paralleltest
- prealloc
- rowserrcheck
- sqlclosecheck
- tagliatelle
- varnamelen
- wastedassign
- wrapcheck
- wsl # use the new wsl_v5 instead
settings:
funlen:
lines: 110
statements: 60
goheader:
values:
regexp:
copyright_regex: 'Copyright © (\d{4})(?: - (\d{4}))? SUSE LLC'
template: |-
{{copyright_regex}}
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.
importas:
alias:
- 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
- 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
- pkg: sigs.k8s.io/controller-runtime
alias: ctrl
- pkg: sigs.k8s.io/cluster-api/api/core/v1beta2
alias: clusterv1
no-unaliased: true
lll:
line-length: 150
revive:
rules:
- 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
- name: bool-literal-in-expr
- name: constant-logical-expr
exclusions:
generated: lax
presets:
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- gochecknoglobals
- testpackage
path: _test\.go
- linters:
- revive
text: var-naming
- linters:
- staticcheck
text: ST1003
- linters:
- revive
text: "package-comments: should have a package comment"
paths:
- examples/examples.go
- .*_test\.go$
- third_party$
- builtin$
- examples$
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
settings:
gci:
sections:
- standard
- blank
- dot
- default
- prefix(sigs.k8s.io/cluster-api)
- prefix(github.com/rancher/turtles)
custom-order: true
goimports:
local-prefixes:
- github.com/rancher/turtles
exclusions:
generated: lax
paths:
- .*_test\.go$
- third_party$
- builtin$
- examples$