mypy: Minor changes to config

This commit is contained in:
Florian Bruhin 2021-01-29 21:03:28 +01:00
parent 9a5fe232cd
commit 5ba5fbfe2a
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[mypy]
python_version = 3.6
# --strict
### --strict
warn_unused_configs = True
# disallow_any_generics = True
disallow_subclassing_any = True
@ -17,11 +17,13 @@ warn_unused_ignores = True
# no_implicit_reexport = True
strict_equality = True
# Other strictness flags
### Other strictness flags
warn_unreachable = True
disallow_any_unimported = True
# Output
### Output
show_error_codes = True
show_error_context = True
pretty = True
[mypy-colorama]