-
Notifications
You must be signed in to change notification settings - Fork 8
/
.golangci.yml
109 lines (107 loc) · 2.37 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
# Options for analysis running.
run:
go: "1.22"
skip-files:
- "zz_generated.*\\.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/harvester
linters:
- revive
linters-settings:
funlen:
lines: 110
statements: 60
lll:
line-length: 150
mnd:
ignored-numbers:
- "5"
- "4"
- "3"
goimports:
local-prefixes: github.com/rancher-sandbox/cluster-api-provider-harvester
gci:
custom-order: true
#local-prefixes: github.com/rancher-sandbox/cluster-api-provider-harvester
sections:
- "standard"
- "blank"
- "dot"
- "default"
- "prefix(sigs.k8s.io/cluster-api)"
- "prefix(github.com/rancher-sandbox/cluster-api-provider-harvester)"
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
- 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
- depguard
- typecheck
- gomoddirectives