-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
Should this format work? #50
Comments
Try to separate formats via whitespace:
|
And if you pass -efm flag for reviewdog, you have to pass multiple efm flag in this case: reviewdog -efm="%EFAILURE:\ Schema\ [%-P%f]%.%#" -efm="%#.\ %m" -efm="%C%.%#" -efm="%-G%.%#" |
Ah I see! I wanted to incorporate reviewdog with my action https://github.com/marketplace/actions/iglu-schema-lint but I couldn't due to this issue. I resorted to doing regex matches. Another issue I ran into was the fact that these errors didn't have a line number all the time, so again I'm trying to guess them in order to make sure they are part of diff. Is that something reviewdog can handle better? |
Given this error log:
and errorformat string
the playground can parse errors correctly
But the CLI tool
doesn't output the
filename
properly:README says
...but it doesn't support Vim regex.
but I see this toowhich is using a regex pattern
%.%#
.Not a vim user and up until yesterday, I had no idea what an errorformat was. So I'm not sure what's going on here.
The ultimate issue is that reviewdog is not reporting any findings despite errors so I'm trying to debug that.
The text was updated successfully, but these errors were encountered: