Files
fastapi/scripts/lint.sh
2024-04-29 17:03:14 -07:00

9 lines
125 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
mypy fastapi
ruff check fastapi tests docs_src scripts
ruff format fastapi tests --check