12 lines
134 B
Bash
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
|