Skip to content

Commit 5791e31

Browse files
committed
Add mypy exceptions
1 parent f1d8dab commit 5791e31

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,18 @@ warn_no_return = true
7272
no_implicit_reexport = true
7373
show_error_codes = true
7474

75+
# TODO: Remove this override after adding full type annotations in build tooling modules.
76+
[[tool.mypy.overrides]]
77+
module = [
78+
"build_support.network",
79+
"build_support.releases",
80+
"build_support.lib_xmlsec_dependency_builder",
81+
"build_libs_xmlsec"
82+
]
83+
disallow_untyped_calls = false
84+
disallow_untyped_defs = false
85+
disable_error_code = ["attr-defined"]
86+
7587
# ruff
7688
[tool.ruff]
7789
# Maximum line length, same as your original Black + Flake8 config

0 commit comments

Comments
 (0)