-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yaml
110 lines (95 loc) · 2.5 KB
/
.golangci.yaml
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
---
run:
deadline: 240s
tests: true
linters-settings:
dupl:
threshold: 110
lll:
line-length: 128
goimports:
local-prefixes: "github.com/aruba-uxi"
godox:
keywords:
- OPTIMIZE
exhaustive:
default-signifies-exhaustive: true
funlen:
lines: 90
statements: 60
tagliatelle:
case:
rules:
json: snake
linters:
# See the dedicated "linters" documentation section.
# All available settings of specific linters.
enable-all: true
disable:
- cyclop # we have gocyclo, apparently its better
- execinquery # deprecated
- copyloopvar # if we update to later than go 1.22
- intrange # later version of go
- mnd # we want this todo: also see gomnd
- gomnd # disabled in gl provider todo: also see mnd
- noctx # we want this
- revive # we want this
- dupl # we want this
- contextcheck # we want this, but the "trivial" fix causes context cancelled errors in tests
- depguard # for banning specific dependencies
- canonicalheader # for checking copyright headers
- err113 # disabled in gl provider
- exhaustruct # disabled in gl provider
- gci # disabled in gl provider
- gochecknoglobals # disabled in gl provider
- godot # disabled in gl provider
- intrange # later version of go
- gomnd # disabled in gl provider todo: also see mnd
- paralleltest # disabled in gl provider
- testpackage # disabled in gl provider
- varnamelen # disabled in gl provider, but we may want it... seems like good
- wsl # disabled in gl provider
severity:
default-severity: error
case-sensitive: true
rules:
- linters:
- dupl
severity: info
issues:
exclude-rules:
# Exclude lll issues for long lines with go:generate
- linters:
- lll
source: "^//go:generate "
# ignore function length for tests as look up tables typically exceed.
- linters:
- funlen
- goerr113
- dupl
path: _test\.go
- linters:
- stylecheck
- goconst
- maintidx
- testifylint
path: pkg/config-api-client
- linters:
- dupl
path: ".*generated.*go"
- linters:
- goconst
path: ".*generated.*go"
- linters:
- staticcheck
text: "SA9003:"
- linters:
- stylecheck
text: "ST1005:"
- linters:
- ireturn
path: internal/provider/resources
- linters:
- ireturn
path: internal/provider/util/retry.go
max-same-issues: 0