Files
fastapi/scripts/lint.sh
2026-06-15 14:31:14 +00:00

10 lines
167 B
Bash
Executable File

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