Created
February 15, 2018 11:28
-
-
Save jbszczepaniak/f0a0d7d4287c4c35bd1931ee89eb0b34 to your computer and use it in GitHub Desktop.
Do not allow to commit prints and console.logs
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 characters
count=`grep -iR --include \*.ts 'console.log(' src/* | wc -l | awk '{print $1}'` | |
if [[ "$count" != 0 ]]; then | |
echo "ERROR: Remove any config.log() statements in typescript sources" | |
exit 1 | |
fi | |
count=`grep -iR --include \*.py 'print(' src/* | wc -l | awk '{print $1}'` | |
if [[ "$count" != 0 ]]; then | |
echo "ERROR: Remove any print() statements in python sources" | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment