Skip to content

Commit d84d2de

Browse files
committed
pyproject.toml: add mypy config
1 parent 3866c86 commit d84d2de

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ lint.ignore = [
66
"E731", # Do not assign a lambda expression, use a def
77
]
88

9+
[tool.mypy]
10+
ignore_missing_imports = true
11+
implicit_optional = true
12+
follow_imports = "skip"
13+
allow_untyped_calls = true
14+
allow_untyped_defs = true
15+
916
[build-system]
1017
requires = ["setuptools"]
1118
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)