Created
April 26, 2019 20:40
-
-
Save ehashman/730d1a108b98dcbb8333cbb327b752f3 to your computer and use it in GitHub Desktop.
pre-commit hook to run gofmt
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
#!/bin/bash | |
# | |
# Save me as | |
# .git/hooks/pre-commit | |
if [[ -n `gofmt -s -l pkg cmd test` ]]; then | |
gofmt -s -d pkg cmd test | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment