-
Is there any way to disable all linting in pylance. Right now i just do it in
Do I must spell out all the rules here: Is there a easy way to do so? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
You could set your language server to none? "python.languageServer": "None" Or do you still want completions but not have any errors show up? To remove more errors you'd either have to do what you're already doing, or perhaps switch the "python.analysis.typeCheckingMode": "off" |
Beta Was this translation helpful? Give feedback.
-
@stevenlis "python.analysis.ignore": ["*"], |
Beta Was this translation helpful? Give feedback.
You could set your language server to none?
Or do you still want completions but not have any errors show up?
To remove more errors you'd either have to do what you're already doing, or perhaps switch the
typeCheckingMode
to off if you haven't already: