-
Notifications
You must be signed in to change notification settings - Fork 30
/
.golangci.yml
139 lines (139 loc) · 3.28 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
# Options for analysis running.
run:
go: "1.22"
skip-files:
- "zz_generated.*\\.go$"
- "conversion\\.go"
- "vendored_openapi\\.go$"
- ".*_test\\.go$"
allow-parallel-runners: true
issues:
include:
- EXC0012
- EXC0014
exclude-rules:
- path: _test\.go
linters:
- testpackage
- gochecknoglobals
- path: controlplane/api/v1alpha1/*
linters:
- gochecknoglobals
- source: "^//\\+kubebuilder:"
linters:
- lll
- path: _webhook\.go
linters:
- dupl
- wrapcheck
- text: var-naming
linters:
- revive
- text: ST1003
linters:
- stylecheck
- text: G114 # Needs further discussion to confirm disabling
linters:
- gosec
- text: G402 # Needs futher discussion
path: api/v1alpha1
linters:
- gosec
- text: unexported-return
path: pkg/rke2
linters:
- revive
linters-settings:
funlen:
lines: 110
statements: 60
lll:
line-length: 150
gomnd:
ignored-numbers:
- "5"
- "4"
- "3"
goimports:
local-prefixes: github.com/rancher/cluster-api-provider-rke2
gci:
custom-order: true
sections:
- "standard"
- "blank"
- "dot"
- "default"
- "prefix(sigs.k8s.io/cluster-api)"
- "prefix(github.com/rancher/cluster-api-provider-rke2)"
wsl:
force-err-cuddling: false
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
linters:
enable-all: true
disable:
- nolintlint
- tagliatelle
- exhaustruct
- exhaustive
- exhaustivestruct
- maligned
- funlen
- wrapcheck
- goerr113 # this one should probably be re-enabled soon
- paralleltest
- varnamelen
- cyclop
- gochecknoglobals
- gochecknoinits
- nonamedreturns
- gocritic
- depguard
- ireturn # Needs further discussion
- maintidx # Needs further discussion
- nestif # Needs further discussion
- gocognit # Needs further discussion
- containedctx # Needs further discussion
# The following are all deprecated linters
- deadcode
- ifshort
- varcheck
- scopelint
- interfacer
- structcheck
- golint
- nosnakecase
# Disabled because of generics
- rowserrcheck
- sqlclosecheck
- wastedassign