-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsightcode.config.json
More file actions
48 lines (48 loc) · 878 Bytes
/
Copy pathinsightcode.config.json
File metadata and controls
48 lines (48 loc) · 878 Bytes
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
{
"thresholds": {
"complexity": {
"excellent": 10,
"good": 15,
"acceptable": 20,
"poor": 30,
"veryPoor": 50
},
"duplication": {
"excellent": 3,
"good": 8,
"acceptable": 15,
"poor": 30,
"veryPoor": 50
},
"fileSize": {
"excellent": 200,
"good": 300,
"acceptable": 400,
"poor": 500,
"veryPoor": 750
},
"functionCount": {
"excellent": 10,
"good": 15,
"acceptable": 20,
"poor": 30
},
"grades": {
"A": 90,
"B": 80,
"C": 70,
"D": 60
},
"maintainabilityLabels": {
"good": 80,
"acceptable": 60,
"poor": 40
},
"extremeFilePenalties": {
"largeFileThreshold": 1000,
"largeFilePenalty": 10,
"massiveFileThreshold": 2000,
"massiveFilePenalty": 20
}
}
}