Add more static checks and move to separate file to match main repo

This commit is contained in:
Aaron Franke
2022-10-09 01:25:44 -05:00
parent f69f1bb58f
commit bcfa3bf320
8 changed files with 223 additions and 77 deletions

11
misc/scripts/mypy.ini Normal file
View File

@@ -0,0 +1,11 @@
[mypy]
ignore_missing_imports = true
disallow_any_generics = True
pretty = True
show_column_numbers = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True
namespace_packages = True
explicit_package_bases = True