Skip to content

Instantly share code, notes, and snippets.

@chollier
Last active February 25, 2016 23:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chollier/d50afce066e27aa22629 to your computer and use it in GitHub Desktop.
Save chollier/d50afce066e27aa22629 to your computer and use it in GitHub Desktop.
Pre-commit ESLINT hook using npm's binary
#!/bin/sh
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".js\{0,1\}$")
if [[ "$STAGED_FILES" = "" ]]; then
exit 0
fi
PASS=true
echo "\nValidating Javascript:\n"
# Check for eslint
ESLINT=$(npm bin)/eslint
if [[ ! -x $ESLINT ]]; then
echo "\t\033[41mPlease install ESlint (run npm install)\033[0m"
exit 1
fi
$ESLINT --cache --quiet "$STAGED_FILES"
if [[ "$?" == 0 ]]; then
echo "\t\033[32mESLint Passed\033[0m"
else
echo "\t\033[41mESLint Failed\033[0m"
PASS=false
fi
echo "\nJavascript validation completed!\n"
if ! $PASS; then
echo "\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
echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
fi
exit $?
@chollier
Copy link
Author

PS: don't forget to chmod +x

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment