Skip to content

Instantly share code, notes, and snippets.

@oskimura
Last active July 5, 2019 09:30
Show Gist options
  • Select an option

  • Save oskimura/3753d1e804823173d01daa9713f285bc to your computer and use it in GitHub Desktop.

Select an option

Save oskimura/3753d1e804823173d01daa9713f285bc to your computer and use it in GitHub Desktop.
コミット漏れチェック
git stash -k
sleep 3
git diff --cached --name-only | xargs node node_modules/eslint/bin/eslint.js
status=$?
echo $status
if [ $status -ne 0 ]; then
echo "failed eslint";
git stash pop --index
exit 1;
fi
git stash po
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment