forked from pingcap/diag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.revive.toml
58 lines (53 loc) · 1.29 KB
/
.revive.toml
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
ignoreGeneratedHeader = false
severity = "error"
confidence = 0.8
errorCode = -1
warningCode = 0
[rule.atomic]
[rule.blank-imports]
[rule.context-as-argument]
[rule.dot-imports]
[rule.duplicated-imports]
[rule.error-return]
[rule.error-strings]
[rule.error-naming]
[rule.confusing-naming]
[rule.unexported-naming]
[rule.confusing-results]
#[rule.exported]
[rule.if-return]
[rule.var-declaration]
[rule.var-naming]
[rule.range]
[rule.range-val-in-closure]
[rule.range-val-address]
[rule.receiver-naming]
[rule.indent-error-flow]
[rule.superfluous-else]
[rule.modifies-parameter]
[rule.modifies-value-receiver]
[rule.time-naming]
[rule.empty-block]
[rule.empty-lines]
#[rule.early-return]
#[rule.unnecessary-stmt]
#[rule.struct-tag] # https://github.com/mgechev/revive/issues/520
[rule.string-of-int]
[rule.string-format]
[rule.constant-logical-expr]
[rule.bool-literal-in-expr]
[rule.redefines-builtin-id]
[rule.waitgroup-by-value]
[rule.unconditional-recursion]
[rule.cognitive-complexity]
severity = "warning"
arguments =[48]
#[rule.cyclomatic]
# severity = "warning"
# arguments = [48]
[imports-blacklist]
arguments =["crypto/md5", "crypto/sha1", "io/ioutil"]
[rule.defer]
arguments=[["call-chain", "method-call", "return"]]
# This can be checked by other tools like megacheck
[rule.unreachable-code]