forked from rancher/cluster-api-provider-rke2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yml
More file actions
161 lines (161 loc) · 3.37 KB
/
.golangci.yml
File metadata and controls
161 lines (161 loc) · 3.37 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
version: "2"
run:
go: "1.25"
allow-parallel-runners: true
linters:
default: all
disable:
- containedctx
- cyclop
- depguard
- err113
- exhaustive
- exhaustruct
- funlen
- gochecknoglobals
- gochecknoinits
- gocognit
- gocritic
- ireturn
- maintidx
- nestif
- noinlineerr
- nolintlint
- nonamedreturns
- paralleltest
- prealloc
- rowserrcheck
- sqlclosecheck
- tagliatelle
- varnamelen
- wastedassign
- wrapcheck
- wsl # use the new wsl_v5 instead
settings:
funlen:
lines: 110
statements: 60
lll:
line-length: 150
mnd:
ignored-numbers:
- "30"
- "20"
- "5"
- "4"
- "3"
- "2"
- "10"
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
wsl:
force-err-cuddling: false
exclusions:
generated: lax
presets:
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- gochecknoglobals
- testpackage
path: _test\.go
- linters:
- lll
source: '^//\s*\+kubebuilder:'
- linters:
- dupl
- wrapcheck
path: _webhook\.go
- linters:
- revive
text: var-naming
- linters:
- staticcheck
text: ST1003
- linters:
- gosec
text: G114
- linters:
- gosec
text: G115
- linters:
- gomoddirectives
text: "replacement are not allowed"
- linters:
- staticcheck
text: SA1019
- linters:
- revive
path: pkg/rke2
text: unexported-return
- linters:
- revive
text: "package-comments: should have a package comment"
- linters:
- modernize
text: "any: interface{}"
paths:
- zz_generated.*\.go$
- conversion\.go
- vendored_openapi\.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/cluster-api-provider-rke2)
custom-order: true
goimports:
local-prefixes:
- github.com/rancher/cluster-api-provider-rke2
exclusions:
generated: lax
paths:
- zz_generated.*\.go$
- conversion\.go
- vendored_openapi\.go$
- .*_test\.go$
- third_party$
- builtin$
- examples$