diff --git a/pyproject.toml b/pyproject.toml index 02bcad8eb3..345de641dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -201,7 +201,11 @@ filterwarnings = [ ] [tool.pyright] -strict = ["frictionless"] +typeCheckingMode = "strict" include = ["frictionless"] exclude = ["frictionless/vendors"] ignore = ["**/__spec__/**", "**/__init__.py", "**/conftest.py"] +# typer's Option/Argument overloads include Any in their signatures, which +# trips these two rules on every call site without revealing real bugs. +reportUnknownMemberType = false +reportUnknownVariableType = false