-
Notifications
You must be signed in to change notification settings - Fork 3
/
.golangci.yml
165 lines (152 loc) · 3.32 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
---
run:
concurrency: 3
timeout: 15m
issues-exit-code: 1
tests: true
# list of build tags, all linters use it. Default is empty list
# output configuration options
output:
# 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?
errcheck:
check-type-assertions: false
gci:
sections:
- standard # Standard section: captures all standard packages.
- default
- prefix(github.com/wimspaargaren/prolayout)
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,}$"
gofmt:
simplify: true
gocyclo:
min-complexity: 18
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
unparam:
check-exported: false
nakedret:
max-func-lines: 0
prealloc:
simple: true
range-loops: true
for-loops: false
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:
enable-all: true
disable:
- errname
- execinquery # deprecated (since v1.58.0)
- exhaustruct
- exportloopref # deprecated (since v1.60.2)
- gomnd # deprecated (since v1.58.0)
- nilnil
- nlreturn
- paralleltest
- varnamelen
- wsl
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