Files
fastapi/scripts/lint.sh
Sebastián Ramírez fa74093440 Use Ruff for linting (#5630)
2022-11-13 19:19:04 +01:00

10 lines
163 B
Bash
Executable File

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