Skip to content

Commit

Permalink
mypy: Set ignore_missing_imports = False
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Nov 9, 2023
1 parent be326f2 commit 6eb5a26
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ console_scripts =
tinuous = tinuous.__main__:main

[mypy]
ignore_missing_imports = True
ignore_missing_imports = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True
Expand All @@ -81,6 +81,9 @@ show_traceback = True
pretty = True
plugins = pydantic.mypy

[mypy-datalad.*]
ignore_missing_imports = True

[pydantic-mypy]
init_forbid_extra = True
warn_required_dynamic_aliases = True

0 comments on commit 6eb5a26

Please sign in to comment.