forked from openclarity/simple-controller-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
70 lines (65 loc) · 1.96 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
run:
timeout: 20m
linters-settings:
golint:
min-confidence: 0.1
goimports:
local-prefixes: github.com/openclarity/simple-controller-runtime
errorlint:
# Check whether fmt.Errorf uses the %w verb for formatting errors. See the readme for caveats
errorf: true
gomoddirectives:
# Allow local `replace` directives. Default is false.
replace-local: true
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:
- musttag
- revive
- maligned
- funlen
- dupl
- nestif
- wsl
- lll
- interfacer
- exhaustivestruct
- nlreturn
- gocritic
- gochecknoglobals
- testpackage
- goerr113
- paralleltest
- godox # Allow TODOs
- tagliatelle # Allow json(camel)
- scopelint # deprecated
- golint # deprecated
- ifshort # deprecated
- deadcode # deprecated
- varcheck # deprecated
- structcheck # deprecated
- nosnakecase # deprecated
- gochecknoinits # Allow init function
- nolintlint # Allow nolint
- varnamelen # Allow short var names
- ireturn # Allow returning with interfaces
- 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/vmclarity)"`
- depguard # NOTE(chrisgacsal): need discussion before enabling it
- tagalign # NOTE(chrisgacsal): does not seem to provide much value
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