-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.golangci.yml
155 lines (152 loc) · 3.66 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
run:
timeout: 10m
allow-parallel-runners: true
build-tags:
- containers_image_openpgp
- containers_image_storage_stub
linters:
disable-all: true
# Look at this for details: https://golangci-lint.run/usage/linters/
enable:
# enabled by default
- typecheck
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- unused
# disabled by default
- asasalint
- asciicheck
- bidichk
- bodyclose
- containedctx
- contextcheck
- depguard
- dogsled
- durationcheck
- errchkjson
- errname
- errorlint
- exhaustive
- copyloopvar
- ginkgolinter
- gocheckcompilerdirectives
- goconst
- gocritic
- err113
- gofmt
- goimports
- goprintffuncname
- gosec
- importas
- loggercheck
- makezero
- misspell
- musttag
- nakedret
- nilerr
- nilnil
- nlreturn
- noctx
- nolintlint
- nonamedreturns
- prealloc
- predeclared
- promlinter
- reassign
- revive
- stylecheck
# - tagliatelle
- unconvert
- unparam
- usestdlibvars
- usetesting
- whitespace
- wrapcheck
linters-settings:
exhaustive:
check:
- switch
- map
govet:
enable-all: true
disable:
- fieldalignment
- shadow
importas:
no-unaliased: true
alias:
- pkg: k8s.io/apimachinery/pkg/types
alias: ktypes
- pkg: k8s.io/apimachinery/pkg/apis/meta/v1
alias: kmetav1
- pkg: k8s.io/apimachinery/pkg/api/errors
alias: kapierrors
- pkg: k8s.io/apimachinery/pkg/util/errors
alias: kerrors
- pkg: k8s.io/apimachinery/pkg/api/meta
alias: kmeta
- pkg: sigs.k8s.io/controller-runtime/pkg/log
alias: kctrllog
- pkg: sigs.k8s.io/yaml
alias: kyaml
- pkg: sigs.k8s.io/controller-runtime
alias: kctrl
- pkg: sigs.k8s.io/controller-runtime/pkg/client
alias: kclient
depguard:
rules:
main:
deny:
- pkg: "github.com/pkg/errors$"
desc: use stdlib errors package
- pkg: "golang.org/x/exp/maps$"
desc: use stdlib maps or samber/lo package
- pkg: "golang.org/x/exp/slices$"
desc: use stdlib slices or samber/lo package
- pkg: "golang.org/x/exp/slog$"
desc: use stdlib slog package
- pkg: "k8s.io/utils/strings/slices$"
desc: use stdlib slices or samber/lo package
- pkg: gopkg.in/yaml
desc: use sigs.k8s.io/yaml
reassign:
patterns:
- ".*"
revive:
# By default, revive will enable only the linting rules that are named in the configuration file.
# So, it's needed to explicitly enable all required rules here.
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: if-return
- name: increment-decrement
- name: var-naming
- name: var-declaration
- name: range
- name: receiver-naming
- name: time-naming
- name: unexported-return
- name: indent-error-flow
- name: errorf
- name: superfluous-else
- name: unreachable-code
- name: redefines-builtin-id
#
# Rules in addition to the recommended configuration above.
#
- name: bool-literal-in-expr
- name: constant-logical-expr
# TODO remove after controller is used
issues:
exclude-files:
- test
- internal