12 lines
134 B
Plaintext
Raw Normal View History

2025-12-04 10:04:21 +08:00
#!/usr/bin/env bash
set -e
set -x
flake8 app --exclude=app/db/migrations
mypy app
black --check app --diff
isort --check-only app