- Put extras_require to setup.py
- Add mypy
This commit is contained in:
mhchia
2019-07-24 15:54:30 +08:00
parent d6c19e71a6
commit 9497c3180f
3 changed files with 54 additions and 0 deletions

12
mypy.ini Normal file
View File

@ -0,0 +1,12 @@
[mypy]
warn_unused_ignores = True
ignore_missing_imports = True
strict_optional = False
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
disallow_any_generics = True
disallow_untyped_calls = True
warn_redundant_casts = True
warn_unused_configs = True
strict_equality = True