-
Sorry to be grumpy, but I just want pylance/pyright to tell me when I make silly mistakes like this def foo(a):
...
foo() As it stands now, I have to enable |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can keep |
Beta Was this translation helpful? Give feedback.
You can keep
typeChecking=off
but enable only thereportCallIssue
diagnostic check. This might be slightly broader than what you're looking for, but it's pretty close. You could set the severity level toerror
orwarning
depending on how you'd like these diagnostics to appear.