We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First off, great project!
Currently I'm doing something like this in order to generate an ignore file for use with lint and report:
lint
report
vacuum report ... jq -r ' .resultSet.results | group_by(.ruleId) | map({ (.[0].ruleId): map(" - " + .path) }) | add | to_entries[] | "\(.key):\n\(.value | join("\n"))" ' vacuum-report-* > vacuum.ignore.yaml
It would be nice if that was possible using an existing command.
The text was updated successfully, but these errors were encountered:
I wrote a Go program that does this. I made it into a vacuum CLI command here #589
Sorry, something went wrong.
No branches or pull requests
First off, great project!
Currently I'm doing something like this in order to generate an ignore file for use with
lint
andreport
:It would be nice if that was possible using an existing command.
The text was updated successfully, but these errors were encountered: