-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yaml
57 lines (54 loc) · 974 Bytes
/
.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
run:
go: "1.23"
linters:
enable-all: true
disable:
- contextcheck
- depguard
- exhaustive
- exhaustruct
- gochecknoglobals
- gomoddirectives
- gomodguard
- ireturn
- nlreturn
- nonamedreturns
- paralleltest
- testpackage
- varnamelen
- wsl
# Deprecated
- execinquery
- exportloopref
- gomnd
linters-settings:
cyclop:
max-complexity: 15
errcheck:
check-type-assertions: true
check-blank: true
funlen:
lines: 100
statements: 50
gocognit:
min-complexity: 15
interfacebloat:
max: 12
lll:
line-length: 150
makezero:
always: true
misspell:
locale: US
nakedret:
max-func-lines: 5
issues:
exclude-rules:
- path: _test\.go
linters:
# Always closing the HTTP body unnecessarily complicates the tests
- bodyclose
- funlen
- noctx
# We don't need to wrap errors in tests
- wrapcheck