We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e84b59 commit dcb002cCopy full SHA for dcb002c
.golangci.yaml
@@ -1,23 +1,40 @@
1
+version: "2"
2
run:
- timeout: 5m
3
-
4
build-tags:
5
- e2e
6
7
-issues:
8
- exclude-dirs:
9
- - pkg/client # Excludes generated client
10
11
linters:
12
enable:
13
- asciicheck
14
- errorlint
15
- gosec
16
- prealloc
17
- revive
18
- - stylecheck
+ - staticcheck
19
- tparallel
20
- unconvert
21
- unparam
22
disable:
23
- errcheck
+ settings:
+ gosec:
+ excludes:
+ - G115
+ exclusions:
+ generated: lax
24
+ presets:
25
+ - comments
26
+ - common-false-positives
27
+ - legacy
28
+ - std-error-handling
29
+ paths:
30
+ - pkg/client
31
+ - third_party$
32
+ - builtin$
33
+ - examples$
34
+formatters:
35
36
37
38
39
40
0 commit comments