Skip to content

Instantly share code, notes, and snippets.

@tankred
Last active February 13, 2024 08:04
Show Gist options
  • Save tankred/85ec02276ae65fa84262df7bb4c1355e to your computer and use it in GitHub Desktop.
Save tankred/85ec02276ae65fa84262df7bb4c1355e to your computer and use it in GitHub Desktop.
Standard JS validation git hook
#!/bin/sh
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".js\{0,1\}$")
ESLINT="standard"
if [[ "$STAGED_FILES" = "" ]]; then
exit 0
fi
PASS=true
printf "\nValidating js scripts:\n"
for FILE in $STAGED_FILES
do
"$ESLINT" "$FILE"
if [[ "$?" == 0 ]]; then
printf "\t\033[32mStandard JS Passed: $FILE\033[0m"
else
printf "\t\033[41mStandard JS Failed: $FILE\033[0m"
PASS=false
fi
done
printf "\nStandard JS validation completed!\n"
if ! $PASS; then
printf "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass Standardjs but do not. Please fix the StandardJS errors and try again.\n"
exit 1
else
printf "\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