forked from openclarity/openclarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
76 lines (72 loc) · 2.24 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
run:
skip-dirs:
- api
- ui
timeout: 15m
linters-settings:
golint:
min-confidence: 0.1
goimports:
local-prefixes: github.com/openclarity/kubeclarity
errorlint:
# Check whether fmt.Errorf uses the %w verb for formatting errors. See the readme for caveats
errorf: false
gomoddirectives:
# Allow local `replace` directives. Default is false.
replace-local: true
# List of allowed `replace` directives. Default is empty.
replace-allow-list:
# replace containerd GHSA-5ffw-gxpp-mxpf
- github.com/containerd/containerd
# trivy requires these replacements
- oras.land/oras-go
# trivy using non released version, so we need to stick on the released one for other imports that conflicts with it
- github.com/opencontainers/image-spec
gosec:
# To specify a set of rules to explicitly exclude.
# Available rules: https://github.com/securego/gosec#available-rules
# excludes:
# - G404 # Insecure random number source (rand)
forbidigo:
# Forbid the following identifiers (identifiers are written using regexp):
forbid:
- ^print.*$
linters:
enable-all: true
disable:
- maligned
- funlen
- dupl
- nestif
- wsl
- lll
- interfacer
- exhaustivestruct
- nlreturn
- gocritic
- gochecknoglobals
- testpackage
- goerr113
- paralleltest
- gochecknoinits # Allow init function
- godox # Allow TODOs
- tagliatelle # Allow json(camel)
- scopelint # deprecated
- golint # deprecated
- structcheck # deprecated
- ifshort # deprecated
- deadcode # deprecated
- varcheck # deprecated
- nolintlint # Allow nolint
- varnamelen # Allow short var names
- nosnakecase # Allow snake case (we are using _ in some named imports)
- ireturn # Allow returning with iterfaces
- exhaustruct # Allow structures with uninitialized fields
- gci # imports still has gci lint errors after run `gci write --skip-generated -s standard -s default -s "prefix(github.com/openclarity/kubeclarity)"`
issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- govet