mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-30 09:39:20 -05:00
Co-authored-by: nimashadix <nimashadix@pop-os.localdomain> Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy fastapi
|
|
flake8 fastapi tests
|
|
black fastapi tests --check
|
|
isort fastapi tests docs_src scripts --check-only
|