Unify formatting and linting

Ensures optimal formatting in addition to linting during manual deploys
and during pre-commit actions.
This commit is contained in:
2021-11-06 03:10:17 -04:00
parent 9b12cc0236
commit b9c30baf80
5 changed files with 13 additions and 7 deletions

1
lint
View File

@ -5,6 +5,7 @@ if ! which flake8 &>/dev/null; then
exit 1
fi
echo "Linting..."
flake8
ret=$?
if [[ $ret -eq 0 ]]; then