-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.golangci.yml
More file actions
221 lines (214 loc) · 5.22 KB
/
Copy path.golangci.yml
File metadata and controls
221 lines (214 loc) · 5.22 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
version: "2"
run:
timeout: 10m
linters:
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
- canonicalheader
- containedctx
- contextcheck
- copyloopvar
- dogsled
- dupl
- dupword
- durationcheck
- errcheck
- errchkjson
- errname
- errorlint
- exhaustive
- exptostd
- fatcontext
- forcetypeassert
- ginkgolinter
- gocheckcompilerdirectives
- goconst
- gocritic
- gocyclo
- godot
- goheader
- gomodguard
- goprintffuncname
- gosec
- govet
- inamedparam
- importas
- ineffassign
- intrange
- lll
- loggercheck
- mirror
- misspell
- modernize
- nakedret
- nilerr
- nilnil
- noctx
- nolintlint
- nosprintfhostport
- perfsprint
- prealloc
- predeclared
- promlinter
- reassign
- recvcheck
- revive
- rowserrcheck
- sloglint
- staticcheck
- testableexamples
- testifylint
- thelper
- unconvert
- unparam
- unused
- usestdlibvars
- usetesting
- wastedassign
- whitespace
settings:
exhaustive:
default-signifies-exhaustive: true
goheader:
values:
const:
AUTHORS: The Falco Authors
template: |-
SPDX-License-Identifier: Apache-2.0
Copyright {{ YEAR }} {{ AUTHORS }}
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.
lll:
line-length: 150
goconst:
min-len: 2
min-occurrences: 2
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
govet:
disable:
- fieldalignment
- shadow
enable-all: true
importas:
alias:
- pkg: k8s.io/api/([a-z]+)/(v[\w\d]+)
alias: ${1}${2}
- pkg: k8s.io/apimachinery/pkg/apis/meta/v1
alias: metav1
- pkg: k8s.io/apimachinery/pkg/api/errors
alias: k8serrors
- pkg: sigs.k8s.io/controller-runtime/pkg/log
alias: ctrllog
loggercheck:
require-string-key: true
no-printf-like: true
misspell:
locale: US
nolintlint:
allow-unused: false
require-explanation: true
require-specific: true
dupl:
threshold: 300
revive:
rules:
- name: dot-imports
disabled: true
- name: errorf
severity: warning
disabled: false
- name: error-strings
severity: warning
disabled: false
- name: error-naming
severity: warning
disabled: false
- name: empty-block
severity: warning
disabled: false
sloglint:
no-mixed-args: true
kv-only: false
attr-only: false
no-global: "all"
context: "scope"
static-msg: false
key-naming-case: snake
testifylint:
enable-all: true
disable:
- require-error
usetesting:
os-temp-dir: true
exclusions:
paths:
- ^chart/k8s-metacollector/tests/unit/
rules:
# errcheck: Almost all programs ignore errors on these functions
- linters:
- errcheck
text: Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked
- linters:
- govet
text: 'declaration of "(err|ctx)" shadows declaration at'
- linters:
- errorlint
# Disable the check for error type assertions in type switches.
text: type switch on error will fail on wrapped errors. Use errors.As to check for specific errors
# Disable goheader for multi-author files
- linters:
- goheader
path: pkg/oci/authn/credentialstore.go
# Relax gosec in tests
- linters:
- gosec
path: .*_test\.go
text: Use of weak random number generator
- linters:
- gosec
path: .*_test\.go
text: Potential hardcoded credentials
# Exclude whitespace linter from test files
- path: _test\.go
linters:
- whitespace
# Disable exported-symbol godoc requirement inside internal/test packages
- linters:
- revive
path: internal/|test/
text: 'exported: exported'
# nilnil: context.Context cancel funcs return nil error by design
- linters:
- nilnil
text: return both a `nil` error and an invalid value
formatters:
enable:
- gci
- gofmt
settings:
gci:
sections:
- standard
- default
- prefix(github.com/falcosecurity/k8s-metacollector)
custom-order: true
issues:
fix: true
max-issues-per-linter: 0
max-same-issues: 0