Skip to content

Instantly share code, notes, and snippets.

@Lockyy
Last active June 6, 2023 16:23
Show Gist options
  • Save Lockyy/e8b27420b4ac094b1c004712449f473b to your computer and use it in GitHub Desktop.
Save Lockyy/e8b27420b4ac094b1c004712449f473b to your computer and use it in GitHub Desktop.
Run Reek on files that've changed in Git
#!/bin/bash
reek --force-exclusion "$@" $(git status --porcelain | sed s/^...//)
@Lockyy
Copy link
Author

Lockyy commented Dec 5, 2018

I should consider using something like git diff --name-only --diff-filter=d develop... to diff off of develop for this. So that I can see issues with my whole branch rather than just the current staging area.

Would be good if it was off of the parent branch rather than just develop however.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment