🔧 Move all mypy configurations to configuration file (#987)

This commit is contained in:
Taneli Hukkinen 2020-02-27 21:03:03 +01:00 committed by GitHub
parent 92016da962
commit 1da8d3f1e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True

View File

@ -3,6 +3,6 @@
set -e
set -x
mypy fastapi --disallow-untyped-defs
mypy fastapi
black fastapi tests --check
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --check-only --thirdparty fastapi fastapi tests