forked from pseudomuto/protoc-gen-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
revive.toml
54 lines (49 loc) · 1.37 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
ignoreGeneratedHeader = false
severity = "warning"
confidence = 0.8
errorCode = 1
warningCode = 1
exclude = [
"./tmp/..."
]
[rule.blank-imports]
[rule.context-as-argument]
[rule.context-keys-type]
[rule.dot-imports]
[rule.error-return]
[rule.error-strings]
[rule.error-naming]
[rule.exported]
[rule.if-return]
[rule.increment-decrement]
[rule.var-naming]
[rule.var-declaration]
[rule.package-comments]
[rule.range]
[rule.receiver-naming]
[rule.time-naming]
[rule.unexported-return]
[rule.indent-error-flow]
[rule.errorf]
[rule.empty-block]
[rule.superfluous-else]
[rule.unused-parameter]
[rule.unreachable-code]
[rule.redefines-builtin-id]
# The White Box Testing Blog suggests acceptable metrics for Cyclomatic Complexity,
# 1-10 - simple, not much risk
# 11-20 - complex, low risk
# 21-50 - too complex, medium risk, attention
# More than 50 - too complex, can't test , high risk
# Configuration of the `cyclomatic` rule. Here we specify that
# the rule should fail if it detects code with higher complexity than 20.
[rule.cyclomatic]
arguments = [20]
# Configuration of the `argument-limit` rule. Here we specify that
# the rule should fail if the input arguments exceed 6.
[rule.argument-limit]
arguments = [6]
# Configuration of the `function-result-limit` rule. Here we specify that
# the rule should fail if the returned results exceed 3.
[rule.function-result-limit]
arguments = [3]