-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.golangci.yml
79 lines (76 loc) · 1.38 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
linters-settings:
lll:
line-length: 20000
gocyclo:
min-complexity: 20
linters:
enable:
- govet
- errcheck
- staticcheck
- unused
- gosimple
- structcheck # waiting for compatibility with Go 1.18
- varcheck
- ineffassign
- deadcode
- typecheck
- bodyclose # waiting for compatibility with Go 1.18
- revive
- stylecheck
- gosec
- unconvert
- dupl
- goconst
- gocyclo
- gocognit
- gofmt
- goimports
- depguard
- misspell
- lll
- unparam # waiting for compatibility with Go 1.18
- dogsled
# - funlen
- gochecknoinits
# - gocritic
# - godox
- nakedret
- prealloc
- whitespace
# - wsl
- exportloopref
- gochecknoglobals
disable:
- noctx
- scopelint
- errorlint
disable-all: false
presets:
- bugs
- unused
fast: false
issues:
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gochecknoglobals
- dupl
- linters:
- goconst
text: "string `image` has"
- linters:
- goconst
text: "string `video` has"
- linters:
- goconst
text: "string `audio` has"
- linters:
- goconst
text: "string `gif` has"
- linters:
- goconst
text: "string `high` has"
include:
# - EXC0002