diff --git a/pylsp_ruff/plugin.py b/pylsp_ruff/plugin.py index 6b73fae..d1738a3 100644 --- a/pylsp_ruff/plugin.py +++ b/pylsp_ruff/plugin.py @@ -98,6 +98,8 @@ def pylsp_settings(): "mccabe": {"enabled": False}, "pycodestyle": {"enabled": False}, "pyls_isort": {"enabled": False}, + "yapf": {"enabled": False}, + "autopep8": {"enabled": False}, } } return converter.unstructure(settings) diff --git a/pyproject.toml b/pyproject.toml index 687b8ad..5f03713 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} dependencies = [ - "ruff>=0.1.5, <0.2.0", + "ruff>=0.1.5, <0.3.0", "python-lsp-server", "cattrs!=23.2.1", "lsprotocol>=2022.0.0a1",