-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
92 lines (80 loc) · 1.75 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
linters-settings:
depguard:
rules:
main:
list-mode: strict
files:
- $all
- "!$test"
- "!**/pattern.go"
- "!**/testhelper/helper.go"
allow:
- $gostd
tests:
list-mode: strict
files:
- $test
allow:
- $gostd
- github.com/chefe/gitlabcodeowners/testhelper
pattern:
list-mode: strict
files:
- "**/pattern.go"
allow:
- $gostd
- github.com/bmatcuk/doublestar/v4
testhelper:
list-mode: strict
files:
- "**/testhelper/helper.go"
allow:
- $gostd
- github.com/go-test/deep
gocritic:
enabled-tags:
- diagnostic
- style
- performance
- experimental
- opinionated
misspell:
locale: US
nolintlint:
allow-unused: false
require-explanation: true
require-specific: true
linters:
enable-all: true
disable:
# disable deprecated linters
- nosnakecase
- ifshort
- interfacer
- golint
- deadcode
- exhaustivestruct
- scopelint
- structcheck
- varcheck
- maligned
# disable `testpackage` linter because white-box tests are used
- testpackage
issues:
exclude-use-default: false
exclude-rules:
# disable funlen linter for test funcs
- source: ^func\ Test.*$
path: _test\.go
linters:
- funlen
# disable lll linter for long strings in test funcs
- source: ^.*strings\.NewReader\(.*$
path: _test\.go
linters:
- lll
# disable varnamelen linter for tt variable in test funcs
- source: ^\s*tt := tt$
path: _test\.go
linters:
- varnamelen