forked from wimspaargaren/workers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
209 lines (183 loc) · 3.7 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
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
run:
concurrency: 3
timeout: 15m
issues-exit-code: 1
tests: true
skip-dirs:
- data
skip-files:
# list of build tags, all linters use it. Default is empty list
# output configuration options
output:
# colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number"
format: code-climate
# print lines of code with issue, default is true
print-issued-lines: true
# print linter name in the end of issue text, default is true
print-linter-name: true
uniq-by-line: false
# all available settings of specific linters
linters-settings:
gci:
# local-prefixes: github.com/wimspaargaren/workers
sections:
- standard # Captures all standard packages if they do not match another section.
- default # Contains all imports that could not be matched to another section type.
- prefix(github.com/wimspaargaren/workers)
errcheck:
check-type-assertions: false
check-foonk: true
govet:
check-shadowing: false
golint:
min-confidence: 0.8
nestif:
min-complexity: 10
gofmt:
simplify: true
gocyclo:
min-complexity: 18
maligned:
suggest-new: true
dupl:
threshold: 175
goconst:
min-len: 3
min-occurrences: 3
funlen:
lines: 80
statements: 50
godox:
keywords:
- HACK
- OPTIMIZE
- TODO
- BUG
misspell:
locale: UK
ignore-words:
- color
- realization
- realized
- realize
- nationaal
- transporteur
- fulfillment
lll:
line-length: 120
tab-width: 2
unused:
check-exported: false
unparam:
check-exported: false
nakedret:
max-func-lines: 0
prealloc:
simple: true
range-loops: true # Report preallocation suggestions on range loops, true by default
for-loops: false # Report preallocation suggestions on for loops, false by default
gocritic:
enabled-checks:
disabled-checks:
- regexpMust
enabled-tags:
- performance
settings: # settings passed to gocritic
captLocal: # must be valid enabled check name
paramsOnly: true
rangeValCopy:
sizeThreshold: 32
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- dupl
- errcheck
- errorlint
- exportloopref
- funlen
- unused
- gci
- gochecknoglobals
- gochecknoinits
- gocognit
- goconst
- gocritic
- gocyclo
- godox
- gofmt
- gofumpt
- goheader
- revive
- gomodguard
- goprintffuncname
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- nestif
- noctx
# - nolintlint
- rowserrcheck
- sqlclosecheck
- staticcheck
- stylecheck
- tparallel
- typecheck
- unconvert
- unparam
- whitespace
# Disabled
# - wsl
# - depguard
# - dogsled
# - exhaustivestruct
# - godot
# - goerr113
# - goimports
# - lll
# - maligned
# - nlreturn
# - prealloc
# - testpackage
# - wrapcheck
fast: false
severity:
default-severity: error
rules:
- linters:
- gomodguard
severity: warning
issues:
exclude-rules:
- linters:
- gochecknoglobals
- gochecknoinits
path: cmd/
- path: _mock\.go
linters:
- gomnd
- gocritic
- path: _test\.go
linters:
- unused
- goconst
- bodyclose
- gocyclo
- errcheck
- dupl
- gosec
- gocritic
- funlen
- linters:
- staticcheck
text: "SA9003:"
- linters:
- lll
text: "^//go:generate "
exclude-use-default: false
max-issues-per-linter: 0
max-same-issues: 0
new: false