Skip to content

Instantly share code, notes, and snippets.

@redacted-dev
Forked from linhmtran168/pre-commit-eslint
Last active December 1, 2019 21:29
Show Gist options
  • Save redacted-dev/11dbea102ab05ac4839a9cd25dede846 to your computer and use it in GitHub Desktop.
Save redacted-dev/11dbea102ab05ac4839a9cd25dede846 to your computer and use it in GitHub Desktop.
Pre-commit hook to lint rubocop
#!/bin/sh
STAGED_FILES=$(git diff --cached --name-only | grep ".rb\|.rake")
if [[ "$STAGED_FILES" = "" ]]; then
exit 0
fi
PASS=true
echo "\nValidating:\n"
# Check for eslint
which rubocop &> /dev/null
if [[ "$?" == 1 ]]; then
echo "\t\033[41mPlease install Rubocop\033[0m"
exit 1
fi
for FILE in $STAGED_FILES
do
rubocop "$FILE"
if [[ "$?" == 0 ]]; then
echo "\t\033[32mESLint Passed: $FILE\033[0m"
else
echo "\t\033[41mESLint Failed: $FILE\033[0m"
PASS=false
fi
done
echo "\Validation completed!\n"
if ! $PASS; then
echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass cops but do not. Please fix the errors and try again.\n"
exit 1
else
echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
fi
exit $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment