We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ruff server
pyright
I cannot have both ruff server and pyright running at the same time, it is annoying.
jupyter_server_config.py:
jupyter_server_config.py
c = get_config() # noqa c.ServerApp.open_browser = False c.LanguageServerManager.autodetect = False c.LanguageServerManager.language_servers = { "pyright": { "argv": ["pyright-langserver", "--stdio"], "languages": ["python"], "version": 2, "mime_types": ["text/python", "text/ipython"], "display_name": "pyright", }, "ruff": { "argv": ["ruff", "server", "--preview"], "languages": ["python"], "version": 2, "mime_types": ["text/python", "text/ipython"], "display_name": "ruff", }, }
settings:
settings
"language_servers": { "pyright": { "priority": 500, "serverSettings": {} }, "ruff": { "priority": 500, "serverSettings": {} } },
To have suggestions from both pyright and ruff.
ruff
4.2.3
The text was updated successfully, but these errors were encountered:
PRs to enable this would be warmly welcome!
I will close this as duplicate of #708 and of #437.
Sorry, something went wrong.
No branches or pull requests
Description
I cannot have both
ruff server
andpyright
running at the same time, it is annoying.Reproduce
jupyter_server_config.py
:settings
:Expected behavior
To have suggestions from both
pyright
andruff
.Context
4.2.3
The text was updated successfully, but these errors were encountered: