-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yaml
62 lines (60 loc) · 1.21 KB
/
.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
58
59
60
61
62
linters:
enable-all: true
disable:
# nice to be turned on
- wsl
- nlreturn
- err113
- mnd
- wrapcheck
# deprecated
- gomnd
- execinquery
- exportloopref
# disabled because the Go version
- copyloopvar
- intrange
linters-settings:
paralleltest:
ignore-missing: true
cyclop:
max-complexity: 20
funlen:
lines: 100
gocognit:
min-complexity: 40
lll:
line-length: 160
goimports:
local-prefixes: github.com/michurin/netpunch
varnamelen:
max-distance: 16
gci:
sections:
- standard
- default
- prefix(github.com/michurin/netpunch/netpunchlib)
depguard:
rules:
regular:
files:
- !$test
allow:
- $gostd
- github.com/michurin/netpunch/netpunchlib
tests:
files:
- $test
allow:
- $gostd
- github.com/michurin/netpunch/netpunchlib
- github.com/stretchr/testify/assert
- github.com/stretchr/testify/require
- github.com/golang/mock/gomock
issues:
exclude-rules:
- path: cmd/netpunch/main.go
linters:
- gochecknoinits
- gochecknoglobals
- forbidigo