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
Currently, duplicate Results within a single SarifFile are excluded from the SarifFile objects created by sarif.py. Results that are duplicated across SARIF files are not currently checked.
To implement:
Compare results that match the same Artifact and Region (line+Optional[column] numbers).
a. If they match the same ruleId, report and discard one (which?)
b. If they don't, we should inspect and determine whether they report the same issue. If they do, create a grouping that correlates those rules with each other.
The text was updated successfully, but these errors were encountered:
This is now partially implemented in sarif_helpers:find_duplicate_results. However, ruleId is not checked, only matching Artifact and Region fields for Results.
mjeronimo
changed the title
Match Results across SarifFiles
Match results across SARIF files
May 16, 2023
Currently, duplicate Results within a single SarifFile are excluded from the SarifFile objects created by sarif.py. Results that are duplicated across SARIF files are not currently checked.
To implement:
a. If they match the same ruleId, report and discard one (which?)
b. If they don't, we should inspect and determine whether they report the same issue. If they do, create a grouping that correlates those rules with each other.
The text was updated successfully, but these errors were encountered: