Last active
December 15, 2016 10:27
-
-
Save zwolf/a2f20f7b673792bda95a156619d34acf to your computer and use it in GitHub Desktop.
A pre-commit hook for git to alert if ":focus" (or similar) is found in a + line of a diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
if `git diff HEAD spec` =~ /^\+.*,\s?(:focus|focus:\s?true|:focus\s?=>\s?true)/ | |
puts "\e[31mPlease focus and remove your :focus tags before committing :)" | |
exit 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment