-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add github-sarif writer for github suited sarif output #907
Conversation
Codecov Report
@@ Coverage Diff @@
## master #907 +/- ##
==========================================
+ Coverage 79.03% 79.07% +0.03%
==========================================
Files 211 212 +1
Lines 5119 5157 +38
==========================================
+ Hits 4046 4078 +32
- Misses 828 834 +6
Partials 245 245
|
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
} else { | ||
absFilePath, err := getAbsoluteFilePath(outputData.Summary.ResourcePath, violation.File) | ||
if err != nil { | ||
return errors.Errorf("unable to create absolute path, error: %v", err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to use fmt.Errorf()
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my bad. will correct this in future
No description provided.