Skip to content

Instantly share code, notes, and snippets.

@qr8r
Last active January 15, 2021 08:33
Show Gist options
  • Save qr8r/70510a0bc0cb54fd8427 to your computer and use it in GitHub Desktop.
Save qr8r/70510a0bc0cb54fd8427 to your computer and use it in GitHub Desktop.
Pre commit: Run staged files through rubo cop
#!/bin/sh
git diff --cached | \
sed -rn "s/^([+]{3}|[-]{3})\s(a|b)\/(.*)/\3/p" | \
uniq | \
xargs rubocop --force-exclusion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment