-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaultConfig.json
71 lines (71 loc) · 1.5 KB
/
defaultConfig.json
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
{
"riskTolerance": 20,
"checks": {
"code": {
"linesChanged": {
"riskStep": 100,
"riskValuePerStep": 0.1
},
"filesChanged": {
"riskStep": 10,
"riskValuePerStep": 0.1
},
"depscanFindings": {
"ignoreSeverityList": "INFO, LOW, HIGH",
"ignoreUnfixable": true,
"ignoreIndirects": true,
"missingValue": 10,
"noVulnerabilitiesCredit": -5
},
"bannedLicenses": {
"licenses": [
"^GPL",
"^LGPL",
"^AGPL",
"SSPL-1.0",
"MS-RL",
"EUPL-1.2",
"CC-BY-NC-3.0"
],
"missingValue": 0,
"noVulnerabilitiesCredit": -1
},
"auditFindings": {
"ignoreSeverityList": "LOW, MODERATE, HIGH",
"missingValue": 10,
"noAuditsCredit": -5
}
},
"scm": {
"git": {
"missingValue": 5
},
"enforceGpg": {
"missingValue": 0.5
},
"verifyGpg": {
"missingValue": 0.5
},
"gitleaksFindings": {
"perFindingValue": 10
}
},
"project": {
"snykFindings": {
"ignoreNonUpgradables": true
},
"maintenanceFindings": {
"daysLateRiskStep": 10,
"daysLateRiskValuePerStep": 5
},
"threatModels": {
"enabled": true,
"highRiskValue": 10,
"mediumRiskValue": 5,
"lowRiskValue": 1,
"allMitigatedCredit": -3,
"missingValue": 5
}
}
}
}