-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(errors): generate sarif report on successful execution
Signed-off-by: royalpinto007 <[email protected]> fix(errors): tests dDoc, implicit conversion Signed-off-by: royalpinto007 <[email protected]> fix(errors): implicit conversion Signed-off-by: royalpinto007 <[email protected]> fix(errors): brace, default parameters, invert if-else Signed-off-by: royalpinto007 <[email protected]> fix(errors): pre commit checks Signed-off-by: royalpinto007 <[email protected]> fix(errors): arguments Signed-off-by: royalpinto007 <[email protected]> fix(errors): va_list Signed-off-by: royalpinto007 <[email protected]> fix(errors): imports Signed-off-by: royalpinto007 <[email protected]> fix(errors): imports Signed-off-by: royalpinto007 <[email protected]> fix(errors): va_list Signed-off-by: royalpinto007 <[email protected]> fix(errors): va_list Signed-off-by: royalpinto007 <[email protected]>
- Loading branch information
1 parent
ccd589d
commit 796cf5f
Showing
4 changed files
with
140 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
TEST_OUTPUT: | ||
--- | ||
{ | ||
"version": "2.1.0", | ||
"$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0.json", | ||
"runs": [{ | ||
"tool": { | ||
"driver": { | ||
"name": "Digital Mars D", | ||
"version": "2.110.0", | ||
"informationUri": "https://dlang.org/dmd.html" | ||
} | ||
}, | ||
"invocations": [{ | ||
"executionSuccessful": true | ||
}], | ||
"results": [] | ||
}] | ||
} | ||
--- | ||
*/ | ||
// REQUIRED_ARGS: -verror-style=sarif | ||
|
||
void main() { | ||
int x = 5; | ||
} |