Created
March 16, 2017 08:41
-
-
Save a-metta/9fc96b94674567f2dadbb9c4d1117588 to your computer and use it in GitHub Desktop.
Git commit message hook
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 | |
files=$(git diff --cached --name-only | grep '\.jsx\?$') | |
# Prevent ESLint help message if no files matched | |
if [[ $files = "" ]] ; then | |
exit 0 | |
fi | |
failed=0 | |
for file in ${files}; do | |
git show :$file | eslint $file | |
if [[ $? != 0 ]] ; then | |
failed=1 | |
fi | |
done; | |
if [[ $failed != 0 ]] ; then | |
echo "🚫🚫🚫 ESLint failed, git commit denied!" | |
exit $failed | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment