Skip to content

Commit 190a7a5

Browse files
authored
Fix case of ruleId
1 parent 2eedaa9 commit 190a7a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you're new to SARIF and want to learn more, see Microsoft's [`SARIF tutorials
3535

3636
## Providing data to track {% data variables.product.prodname_code_scanning %} alerts across runs
3737

38-
Each time the results of a new code scan are uploaded, the results are processed and alerts are added to the repository. To prevent duplicate alerts for the same problem, {% data variables.product.prodname_code_scanning %} uses fingerprints to match results across various runs so they only appear once in the latest run for the selected branch. This makes it possible to match alerts to the correct line of code when files are edited. The `ruleID` for a result has to be the same across analysis.
38+
Each time the results of a new code scan are uploaded, the results are processed and alerts are added to the repository. To prevent duplicate alerts for the same problem, {% data variables.product.prodname_code_scanning %} uses fingerprints to match results across various runs so they only appear once in the latest run for the selected branch. This makes it possible to match alerts to the correct line of code when files are edited. The `ruleId` for a result has to be the same across analysis.
3939

4040
### Reporting consistent filepaths
4141

@@ -536,7 +536,7 @@ This SARIF output file has example values to show all supported SARIF properties
536536
{
537537
"ruleId": "R01",
538538
"message": {
539-
"text": "Specifying both [ruleIndex](1) and [ruleID](2) might lead to inconsistencies."
539+
"text": "Specifying both [ruleIndex](1) and [ruleId](2) might lead to inconsistencies."
540540
},
541541
"level": "error",
542542
"locations": [

0 commit comments

Comments
 (0)