Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,11 @@ 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
"valid-type", # 967 errors in 115 files
"override", # 790 errors in 220 files
"assignment", # 773 errors in 172 files
"misc", # 692 errors in 132 files
"attr-defined", # 202 errors in 75 files
Expand Down