Revamp formatting and linting on commit
Remove the prepare script, and run the two stages manually. Better handle Black reformatting by doing a check (for the errcode) then reformat and abort commit to review.
This commit is contained in:
6
format
6
format
@ -5,10 +5,14 @@ if ! which black &>/dev/null; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $1 == "check" ]]; then
|
||||
check="--check"
|
||||
fi
|
||||
|
||||
pushd $( git rev-parse --show-toplevel ) &>/dev/null
|
||||
|
||||
echo "Formatting..."
|
||||
black --safe --exclude api-daemon/migrations .
|
||||
black --safe ${check} --exclude api-daemon/migrations .
|
||||
ret=$?
|
||||
if [[ $ret -eq 0 ]]; then
|
||||
echo "Successfully formatted project!"
|
||||
|
Reference in New Issue
Block a user