pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
9 lines
163 B
9 lines
163 B
#!/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
|
|
|