You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Check the Cyclomatic Complexity value of a function or logic block. If the threshold is not met, raise a Minor issue. The default threshold is 5.
5
+
explanation: |-
6
+
# Minor Cyclomatic Complexity control
7
+
8
+
Check the Cyclomatic Complexity value of a function or logic block. If the threshold is not met, raise a Minor issue. The default threshold is 4.
9
+
id: Lizard_ccn-minor
10
+
level: Info
11
+
severityLevel: Info
12
+
threshold: 5
13
+
timeToFix: 5
14
+
title: Minor Cyclomatic Complexity control
15
+
Lizard_nloc-critical:
16
+
category: Complexity
17
+
description: Check the number of lines of code (without comments) in a function or logic block. If the threshold is not met, raise a Critical issue. The default threshold is 100.
18
+
explanation: |-
19
+
# Critical NLOC control - Number of Lines of Code (without comments)
20
+
21
+
Check the number of lines of code (without comments) in a function or logic block. If the threshold is not met, raise a Critical issue. The default threshold is 100.
22
+
id: Lizard_nloc-critical
23
+
level: Error
24
+
severityLevel: Error
25
+
threshold: 100
26
+
timeToFix: 5
27
+
title: Critical NLOC control - Number of Lines of Code (without comments)
28
+
Lizard_nloc-medium:
29
+
category: Complexity
30
+
description: Check the number of lines of code (without comments) in a function. If the threshold is not met, raise a Medium issue. The default threshold is 50.
31
+
explanation: |-
32
+
# Medium NLOC control - Number of Lines of Code (without comments)
33
+
34
+
Check the number of lines of code (without comments) in a function. If the threshold is not met, raise a Medium issue. The default threshold is 50.
35
+
id: Lizard_nloc-medium
36
+
level: Warning
37
+
severityLevel: Warning
38
+
threshold: 50
39
+
timeToFix: 5
40
+
title: Medium NLOC control - Number of Lines of Code (without comments)
0 commit comments