mypy: Minor changes to config
This commit is contained in:
parent
9a5fe232cd
commit
5ba5fbfe2a
|
|
@ -1,7 +1,7 @@
|
||||||
[mypy]
|
[mypy]
|
||||||
python_version = 3.6
|
python_version = 3.6
|
||||||
|
|
||||||
# --strict
|
### --strict
|
||||||
warn_unused_configs = True
|
warn_unused_configs = True
|
||||||
# disallow_any_generics = True
|
# disallow_any_generics = True
|
||||||
disallow_subclassing_any = True
|
disallow_subclassing_any = True
|
||||||
|
|
@ -17,11 +17,13 @@ warn_unused_ignores = True
|
||||||
# no_implicit_reexport = True
|
# no_implicit_reexport = True
|
||||||
strict_equality = True
|
strict_equality = True
|
||||||
|
|
||||||
# Other strictness flags
|
### Other strictness flags
|
||||||
warn_unreachable = True
|
warn_unreachable = True
|
||||||
|
disallow_any_unimported = True
|
||||||
|
|
||||||
# Output
|
### Output
|
||||||
show_error_codes = True
|
show_error_codes = True
|
||||||
|
show_error_context = True
|
||||||
pretty = True
|
pretty = True
|
||||||
|
|
||||||
[mypy-colorama]
|
[mypy-colorama]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue