Browse Source
🔧 Move all mypy configurations to configuration file (#987)
pull/1047/head
Taneli Hukkinen
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
mypy.ini
-
scripts/lint.sh
|
@ -1,2 +1,3 @@ |
|
|
[mypy] |
|
|
[mypy] |
|
|
|
|
|
disallow_untyped_defs = True |
|
|
ignore_missing_imports = True |
|
|
ignore_missing_imports = True |
|
|
|
@ -3,6 +3,6 @@ |
|
|
set -e |
|
|
set -e |
|
|
set -x |
|
|
set -x |
|
|
|
|
|
|
|
|
mypy fastapi --disallow-untyped-defs |
|
|
mypy fastapi |
|
|
black fastapi tests --check |
|
|
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 |
|
|
isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --check-only --thirdparty fastapi fastapi tests |
|
|