forked from oss-review-toolkit/ort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resolutions.yml
43 lines (39 loc) · 1.89 KB
/
resolutions.yml
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
---
# This file contains global resolutions for issues and rule violations occurring in the OSS scan.
# These resolutions are applied to all scanned projects, so make sure to only
# add resolutions that are not specific to a project. Project specific
# resolutions can be configured in the .ort.yml file of the project.
#
# For detailed documentation, see:
# https://github.com/oss-review-toolkit/ort/blob/master/docs/config-file-resolutions-yml.md
# Structure of issue resolution:
#
# issues:
# - message: "A regular expression matching the error message."
# reason: "One of: BUILD_TOOL_ISSUE|CANT_FIX_ISSUE|SCANNER_ISSUE"
# comment: "A comment further explaining why the reason above is applicable."
issues:
- message: "^$"
reason: "CANT_FIX_ISSUE"
comment: "An issue resolution which resolves only issues with an empty message."
# Structure of policy rule violation resolution:
#
# rule_violations:
# - message: "A regular expression matching the violation message."
# reason: "One of: CANT_FIX_EXCEPTION|DYNAMIC_LINKAGE_EXCEPTION|EXAMPLE_OF_EXCEPTION|LICENSE_ACQUIRED_EXCEPTION|PATENT_GRANT_EXCEPTION"
# comment: "A comment further explaining why the reason above is applicable."
rule_violations:
- message: "^$"
reason: "CANT_FIX_EXCEPTION"
comment: "A rule violation resolution which resolves only rule violations with an empty message."
# Structure of vulnerability resolution:
#
# vulnerabilities:
# - id: "A regular expression matching the vulnerability id."
# reason: "One of: CANT_FIX_VULNERABILITY|INEFFECTIVE_VULNERABILITY|INVALID_MATCH_VULNERABILITY|MITIGATED_VULNERABILITY
# |WILL_NOT_FIX_VULNERABILITY|WORKAROUND_FOR_VULNERABILITY"
# comment: "A comment further explaining why the reason above is applicable."
vulnerabilities:
- id: "^$"
reason: "INVALID_MATCH_VULNERABILITY"
comment: "A vulnerability resolution which resolves only vulnerabilities with an empty id."