forked from wimspaargaren/prolayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
221 lines (197 loc) · 4.13 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
210
211
212
213
214
215
216
217
218
219
220
221
run:
concurrency: 3
timeout: 15m
issues-exit-code: 1
tests: true
skip-dirs:
- data
# 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:
depguard:
rules:
main:
deny:
- pkg: "github.com/tj/assert"
desc: not allowed, did you mean testify assert?
gci:
local-prefixes: github.com/wimspaargaren/prolayout
errcheck:
check-type-assertions: false
check-foonk: true
revive:
ignore-generated-header: true
enable-all-rules: true
rules:
- name: add-constant
disabled: true
- name: var-naming
severity: warning
disabled: false
arguments:
- ["ID"] # AllowList
- [] # DenyList
- name: argument-limit
severity: warning
disabled: true
- name: banned-characters
disabled: true
- name: max-public-structs
disabled: true
- name: file-header
disabled: true
- name: cognitive-complexity
disabled: false
arguments: [15]
- name: unused-receiver
disabled: true
- name: function-length
disabled: false
arguments: [30, 0]
- name: line-length-limit
disabled: true
- name: cyclomatic
disabled: false
arguments: [7]
- name: function-result-limit
severity: warning
disabled: false
arguments: [3]
- name: import-alias-naming
severity: warning
disabled: false
arguments:
- "^[a-z][a-z0-9A-Z]{0,}$"
govet:
check-shadowing: false
golint:
min-confidence: 0.8
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
- center
- centers
lll:
line-length: 200
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:
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
- exhaustive
- exportloopref
- funlen
- 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
- tparallel
- typecheck
- unconvert
- unparam
- whitespace
- dogsled
- godot
- goerr113
- goimports
- lll
- prealloc
- testpackage
- depguard
fast: false
severity:
default-severity: error
rules:
- linters:
- gomodguard
severity: warning
issues:
exclude-rules:
- path: _test\.go
linters:
- 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