-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add SARIF Reporter #32
Comments
@jcg-2 This looks great - sounds like a great candidate for a report format. |
@kehoecj is this still up for grabs? If so, I would like to take a shot at it. |
Thanks for volunteering! I assigned it to you |
Starting to work on this now! Sorry for the delay. |
@kehoecj Quick question, is there an example SARIF Report you would like us to follow here? If not, I suggest something like this maybe? {
"version": "2.1.0",
"$schema": "http://json.schemastore.org/sarif-2.1.0-rtm.4",
"runs": [
{
"tool": {
"driver": {
"name": "config-file-validator",
"informationUri": "https://github.com/Boeing/config-file-validator/issues/32",
}
},
"artifacts": [
{
"location": {
"uri": "path/to/config-file.yml"
}
},
{
"location": {
"uri": "path/to/config-file.toml"
}
}
],
"results": [
{
"level": "error",
"message": {
"text": "This will be filled by the message from the validator for first file"
},
},
"level": "error",
"message": {
"text": "This will be filled by the message from the validator for second file"
},
]
}
]
} |
I don't know much about SARIF but the structure looks good. Only question I had was the
Also what is the |
Unfortunately looks like there is no other alternatives for the
For the version
|
Thanks for the explanation! That looks good to me @jackswiney @jd4235 any concerns? |
Looks like there is no opposition. I will start implementing the format suggested above then! |
@armadi1809 Are you still planning to work this issue? |
@kehoecj sorry, the holidays and then some personal stuff got me slacking on this one. I will hopefully have something ready by Monday. Sorry again! |
No rush at all! I was cleaning up the issues and just wanted to make sure some of the assignees were still interested in working the issues. |
Hi, is this issue being worked on? If not, can I make a pull request? |
@shiina4119 I think it's abandoned at this point. Someone made a pull request with some changes but didn't add any tests and hasn't responded for a long time. You can definitely take it on if you're willing! |
Description
The Static Analysis Results Interchange Format (SARIF) standard might be a more appropriate format for consideration instead of/as well as JUnit (#10)
Links
The text was updated successfully, but these errors were encountered: