You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"consider-using-in", # pyright can't see through in expressions,
137
134
"too-many-return-statements", # would prevent us from using recursive tree traversals
138
135
"logging-fstring-interpolation", # see https://github.com/PyCQA/pylint/issues/1788
139
136
"no-else-raise", # not helpful for readability, when we want explicit branches
140
137
"raising-bad-type", # handled by type checker
141
138
"too-many-arguments", # sure, but how can we change the signatures to take less arguments? artificially create objects with arguments? That's stupid...
142
-
"no-member", # checked by pyright
143
-
"import-error", # checked by pyright (and pylint does not do it properly)
144
-
"unsupported-delete-operation", # checked by pyright
145
-
"unsubscriptable-object", # checked by pyright
146
-
"unsupported-membership-test", # checked by pyright
147
139
"invalid-overridden-method", # hopefully checked by type checkers
0 commit comments