-
-
Save gsgbullniu/b6271ce36b8a9e4b2b68576568a1f277 to your computer and use it in GitHub Desktop.
Revisions
-
broofa revised this gist
Nov 1, 2016 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -18,10 +18,12 @@ fi $ESLINT "${STAGED_FILES[@]}" --fix ESLINT_EXIT="$?" # Re-add files since they may have been fixed git add "${STAGED_FILES[@]}" if [[ "${ESLINT_EXIT}" == 0 ]]; then printf "\n\033[42mCOMMIT SUCCEEDED\033[0m\n" else printf "\n\033[41mCOMMIT FAILED:\033[0m Fix eslint errors and try again\n" -
broofa revised this gist
Oct 28, 2016 . No changes.There are no files selected for viewing
-
broofa created this gist
Oct 28, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ #!/bin/bash cd "$(git rev-parse --show-toplevel)" ESLINT="node_modules/.bin/eslint" pwd if [[ ! -x "$ESLINT" ]]; then printf "\t\033[41mPlease install ESlint\033[0m (npm install eslint)\n" exit 1 fi STAGED_FILES=($(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$")) echo "ESLint'ing ${#STAGED_FILES[@]} files" if [[ "$STAGED_FILES" = "" ]]; then exit 0 fi $ESLINT "${STAGED_FILES[@]}" --fix # Re-add files since they may have been fixed git add "${STAGED_FILES[@]}" if [[ "$?" == 0 ]]; then printf "\n\033[42mCOMMIT SUCCEEDED\033[0m\n" else printf "\n\033[41mCOMMIT FAILED:\033[0m Fix eslint errors and try again\n" exit 1 fi exit $?