-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
56 lines (52 loc) · 888 Bytes
/
.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
run:
timeout: 1m
issues-exit-code: 200
tests: false
output:
uniq-by-line: false
linters-settings:
varnamelen:
ignore-names:
- ok
interfacebloat:
max: 25
gofumpt:
lang-version: "1.20"
lll:
line-length: 120
cyclop:
max-complexity: 12
gomnd:
settings:
mnd:
ignored-numbers: 2,10,24,30,60,100,365,1024
ignored-functions: math.*,strconv.*
forbidigo:
forbid:
- ^print.*$
- 'fmt\.Print.*'
- 'fmt\.Println'
- panic
- 'log\.Print.*'
- 'log\.Fatal.*'
linters:
enable-all: true
disable:
- tagliatelle
- nlreturn
- golint
- scopelint
- varcheck
- deadcode
- nosnakecase
- maligned
- interfacer
- ifshort
- exhaustivestruct
- structcheck
- exhaustruct
issues:
exclude-rules:
- linters:
- godox
text: "TODO"