Skip to content

Commit c5d47e8

Browse files
author
Magnus Larsen
committed
remove isort from disable list
1 parent 4df5a88 commit c5d47e8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pip install "ruff<0.1.0" "python-lsp-ruff==1.5.3"
2626

2727
## Usage
2828

29-
This plugin will disable `pycodestyle`, `pyflakes`, `mccabe`, `pyls_isort`, `autopep8`, and `yapf` by default, unless they are explicitly enabled in the client configuration.
29+
This plugin will disable `pycodestyle`, `pyflakes`, `mccabe`, `autopep8`, and `yapf` by default, unless they are explicitly enabled in the client configuration.
3030
When `python-lsp-ruff` is enabled, all linting diagnostics and formatting capabilities will be provided by `ruff`.
3131

3232
Any codes given in the `format` option will only be marked as `fixable` for ruff during the formatting operation, the user has to make sure that these codes are also in the list of codes that ruff checks!

pylsp_ruff/plugin.py

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ def pylsp_settings():
9797
"pyflakes": {"enabled": False},
9898
"mccabe": {"enabled": False},
9999
"pycodestyle": {"enabled": False},
100-
"pyls_isort": {"enabled": False},
101100
"yapf": {"enabled": False},
102101
"autopep8": {"enabled": False},
103102
}

0 commit comments

Comments
 (0)