Skip to content

Instantly share code, notes, and snippets.

@ehashman
Created February 19, 2020 21:20
Show Gist options
  • Save ehashman/632d1e34fb7237b517fb4c563523d738 to your computer and use it in GitHub Desktop.
Save ehashman/632d1e34fb7237b517fb4c563523d738 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# .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