AeroPath / shell /lint.sh
andreped's picture
Added linting scripts
87f4ea6 unverified
raw
history blame
No virus
522 Bytes
#!/bin/bash
isort --check --sl -c demo/src/ demo/app.py
if ! [ $? -eq 0 ]
then
echo "Please run \"sh shell/format.sh\" to format the code."
exit 1
fi
echo "no issues with isort"
flake8 demo/src/ demo/app.py
if ! [ $? -eq 0 ]
then
echo "Please fix the code style issue."
exit 1
fi
echo "no issues with flake8"
black --check --line-length 80 demo/src/ demo/app.py
if ! [ $? -eq 0 ]
then
echo "Please run \"sh shell/format.sh\" to format the code."
exit 1
fi
echo "no issues with black"
echo "linting success!"