-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy path.golangci.yml
More file actions
104 lines (104 loc) · 1.86 KB
/
.golangci.yml
File metadata and controls
104 lines (104 loc) · 1.86 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
version: "2"
linters:
default: all
disable:
- containedctx
- contextcheck
- depguard
- dupl
- err113
- errcheck
- errorlint
- exhaustive
- exhaustruct
- forbidigo
- forcetypeassert
- funcorder
- funlen
- gochecknoglobals
- gocognit
- goconst
- gocritic
- gocyclo
- godoclint
- godot
- godox
- ireturn
- lll
- mnd
- nakedret
- nestif
- nlreturn
- noctx
- noinlineerr
- nonamedreturns
- paralleltest
- prealloc
- recvcheck
- rowserrcheck
- sqlclosecheck
- tagalign
- tagliatelle
- testpackage
- unparam
- unused
- varnamelen
- wastedassign
- wrapcheck
- wsl
- wsl_v5
settings:
cyclop:
max-complexity: 42
dupl:
threshold: 200
goconst:
min-len: 2
min-occurrences: 2
gocyclo:
min-complexity: 42
revive:
rules:
- name: var-naming
severity: warning
disabled: true
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- staticcheck
text: duplicate struct tag
- linters:
- gosec
text: G[501]
- linters:
- gosec
text: G[404]
- path: (.+)\.go$
text: 'undeclared name: `shellquote`'
- path: (.+)\.go$
text: github.com/kballard/go-shellquote" imported but not used
- path: (.+)\.go$
text: github.com/haproxytech/client-native/v6/config-parser/types" imported but not used
paths:
- test
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofmt
- gofumpt
- goimports
exclusions:
generated: lax
paths:
- test
- third_party$
- builtin$
- examples$