zulip/tools/check-all

26 lines
423 B
Plaintext
Raw Normal View History

#!/bin/bash
SCRIPT_DIR="$(dirname "$0")"
EXITCODE=0
FILTER_IMPORTS="-v imported.but.unused"
if [ "$1" = "--imports" ]; then
FILTER_IMPORTS="."
fi
if ! "$SCRIPT_DIR"/jslint/check-all; then
EXITCODE=1;
fi
cd "$SCRIPT_DIR"/..;
if git ls-files | grep py$ | grep -v ^confirmation/ \
| grep -v humbug/test_settings.py \
| xargs pyflakes \
| grep $FILTER_IMPORTS; then
EXITCODE=1;
fi
exit $EXITCODE