-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
84 lines (83 loc) · 1.36 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
linters:
disable-all: true
enable:
- bodyclose
# - dogsled
- dupl
- durationcheck
- exhaustive
- exportloopref
- gci
- gofmt
- gofumpt
- gomoddirectives
- goprintffuncname
- govet
- importas
- ineffassign
- makezero
- misspell
- nakedret
- nilerr
- noctx
- nolintlint
- prealloc
- predeclared
- revive
- staticcheck
- stylecheck
- tparallel
- typecheck
- unconvert
- unparam
- unused
- whitespace
linters-settings:
wsl:
fix: true
errcheck:
fix: true
check-type-assertions: true
goconst:
min-len: 2
min-occurrences: 3
gocritic:
fix: true
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
gomnd:
fix: true
settings:
mnd:
# don't include the "operation" and "assign" checks
checks:
- argument
- case
- condition
- return
govet:
fix: true
nestif:
min-complexity: 15
nolintlint:
require-explanation: true
require-specific: true
tagliatelle:
case:
rules:
json: snake
varnamelen:
fix: true
max-distance: 10
ignore-decls:
- t testing.T
- i int
- j int
- ch Change
- ch *Change
- c *cli.Context
- op *Operation