mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-12 02:05:14 +00:00
9 lines
98 B
Bash
9 lines
98 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
mypy app
|
|
black app --check
|
|
isort --recursive --check-only app
|
|
flake8
|