Skip to content

Instantly share code, notes, and snippets.

@clemlatz
Forked from linhmtran168/pre-commit-eslint
Last active January 11, 2018 11:20
Show Gist options
  • Save clemlatz/597c10963c7f38e67727beabccb99d0c to your computer and use it in GitHub Desktop.
Save clemlatz/597c10963c7f38e67727beabccb99d0c to your computer and use it in GitHub Desktop.
Pre-commit hook to check for Javascript using ESLint
#!/bin/bash
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$")
if [ "$STAGED_FILES" = "" ]; then
exit 0
fi
PASS=true
printf "\nValidating Javascript...\n"
# Check for eslint
which eslint &> /dev/null
if [[ "$?" == 1 ]]; then
printf "\t\033[41mPlease install ESlint\033[0m"
exit 1
fi
for FILE in $STAGED_FILES
do
eslint "$FILE"
if [[ "$?" == 0 ]]; then
printf "\t\033[32m✓ $FILE\033[0m"
else
PASS=false
fi
done
printf "\nJavascript validation completed!\n"
if ! $PASS; then
printf "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n"
exit 1
else
printf "\033[32mCOMMIT SUCCEEDED\033[0m\n"
fi
exit $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment