Locally disable warnings of Python Language Server in Visual Studio Code

4.3k Views Asked by At

I have recently installed Python Language Server in Visual Studio Code.

I sometimes have some warnings that I want to locally disabled

For example, let's assume I have the following code:

import org.sikuli.script.SikulixForJython
from sikuli.Sikuli import *
from guide import *

It is normally run from Sikulix, which uses Jython libraries. Since my favorite editor cannot load this module, it would raise a warning:
unresolved import 'org.sikuli.script.SikulixForJython' Python(unresolved-import)

With pylint, I can disable that warning for only these 3 lines with something like:

# pylint: disable=unresolved-import
import org.sikuli.script.SikulixForJython
from sikuli.Sikuli import *
from guide import *
# pylint: enable=unresolved-import

How to do something similar with Python Language Server?

Thanks

3

There are 3 best solutions below

1
On BEST ANSWER

There's currently no support for per-line warning suppression. To request such a feature, please open an issue at https://github.com/microsoft/python-language-server.

0
On

There is now a partial implementation of linting disabling (for all warnings/errors of a single line).

You can use the keyword # noqa to disable the warning, as tracked in this issue: https://github.com/Microsoft/python-language-server/issues/264

The code updated to disable warnings from Pylan would then be:

import org.sikuli.script.SikulixForJython  # noqa
from sikuli.Sikuli import *  # noqa
from guide import *  # noqa
2
On

There are two types of settings in vscode:

  • Global: settings.json. This can be reached using ctrl + , and on the top right panel, clicking on the brackets icon (Open settings (JSON)).

  • Local: ${workspaceFolder}/.vscode/settings.json

So what you should do is just creating file ${workspaceFolder}/.vscode/settings.json and adding line "python.analysis.disabled": ["too-many-function-arguments", "parameter-missing"], to it.