1
0
mirror of synced 2025-01-31 12:13:48 +01:00

Add mypy config

This commit is contained in:
Stepland 2021-04-29 13:14:40 +02:00
parent 7ed68872d9
commit f623fbf2df

11
mypy.ini Normal file
View File

@ -0,0 +1,11 @@
[mypy]
#disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
#disallow_untyped_decorator = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
warn_redundant_casts = True
ignore_missing_imports = True