diff --git a/pyproject.toml b/pyproject.toml index 6dc03407..e8321cd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -155,8 +155,10 @@ disable_error_code = [ # `assert-type` issues is tests mostly comme from checking overloads # Since this project is specific to Pylance, just ignore them "assert-type", + # Incompatible overrides are out of our stubs' control + # as they are inherited from the implementation. + "override", # TODO - "override", # 790 errors in 220 files "assignment", # 773 errors in 172 files "misc", # 692 errors in 132 files ]