forked from pingcap/tiflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
126 lines (123 loc) · 2.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
run:
go: "1.21"
build-tags:
- intest
linters:
enable:
- unconvert
- unparam
- revive
- depguard
- misspell
- ineffassign
- typecheck
- unused
- gosimple
- errcheck
- staticcheck
- stylecheck
- gosec
- asciicheck
- exportloopref
- makezero
- tparallel
- rowserrcheck
- sqlclosecheck
- noctx
- bodyclose
- misspell
linters-settings:
revive:
ignore-generated-header: false
severity: error
confidence: 0.8
error-code: -1
warning-code: -1
rules:
- name: blank-imports
- name: context-as-argument
- name: dot-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: exported
- name: if-return
- name: var-naming
- name: package-comments
- name: range
- name: receiver-naming
- name: indent-error-flow
- name: superfluous-else
- name: modifies-parameter
- name: unreachable-code
depguard:
list-type: denylist
include-go-root: true
packages:
- log
- github.com/juju/errors
packages-with-error-message:
# specify an error message to output when a blacklisted package is used
- log: "logging is allowed only by pingcap/log"
- github.com/juju/errors: "error handling is allowed only by pingcap/errors"
additional-guards:
- list-type: denylist
include-go-root: true
packages:
- errors
- github.com/pingcap/errors
packages-with-error-message:
- errors: "error handling is allowed only by github.com/pingcap/tiflow/pkg/errors"
- github.com/pingcap/errors: "error handling is allowed only by github.com/pingcap/tiflow/pkg/errors"
ignore-file-rules:
- "!**/tiflow/engine/**"
- "**/engine/pkg/rpcutil/*.go"
staticcheck:
checks:
[
"S1002",
"S1004",
"S1007",
"S1009",
"S1010",
"S1012",
"S1019",
"S1020",
"S1021",
"S1024",
"S1030",
"SA2*",
"SA3*",
"SA4009",
"SA5*",
"SA6000",
"SA6001",
"SA6005",
"-SA2002",
]
stylecheck:
checks: ["-ST1003"]
gosec:
excludes:
- G404
- G601
- G108
- G114
- G201
- G401
- G501
issues:
exclude-rules:
- path: _test\.go
linters:
- errcheck
- gosec
- makezero
# G113 Potential uncontrolled memory consumption in Rat.SetString (CVE-2022-23772)
# only affects gp < 1.16.14. and go < 1.17.7
- text: "(G113)"
linters:
- gosec
include:
- EXC0012 # exported (.+) should have comment( \(or a comment on this block\))? or be unexported)
- EXC0014 # comment on exported (.+) should be of the form "(.+)..."