15 lines
229 B
Bash
15 lines
229 B
Bash
#!/usr/bin/env python3
|
|
|
|
set -e
|
|
|
|
echo "> Running black"
|
|
black --check app/
|
|
|
|
echo "> Running isort"
|
|
isort -rc -c app/
|
|
|
|
echo "> Running mypy"
|
|
mypy --ignore-missing-imports app/
|
|
|
|
echo "> Running flake8"
|
|
flake8 --ignore=E128,E501 app
|