bowl/mypy.ini
Joscha ce73a7d3bf Update mypy config
It now ignores unused imports, because I don't want to write types for
all the libraries I use.
2019-06-08 09:10:59 +00:00

5 lines
126 B
INI

[mypy]
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True
ignore_missing_imports = True