2025-12-04 10:04:21 +08:00

12 lines
134 B
Bash

#!/usr/bin/env bash
set -e
set -x
flake8 app --exclude=app/db/migrations
mypy app
black --check app --diff
isort --check-only app