We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faa07d9 commit 75f8275Copy full SHA for 75f8275
README.md
@@ -18,7 +18,7 @@ There also exists an [AUR package](https://aur.archlinux.org/packages/python-lsp
18
19
# Usage
20
21
-This plugin will disable `flake8`, `pycodestyle` and `mccabe` by default.
+This plugin will disable `flake8`, `pycodestyle`, `pyflakes` and `mccabe` by default.
22
When enabled, all linting diagnostics will be provided by `ruff`.
23
24
# Configuration
pylsp_ruff/ruff_lint.py
@@ -33,6 +33,7 @@ def pylsp_settings():
33
"perFileIgnores": None,
34
"select": None,
35
},
36
+ "pyflakes": {"enabled": False},
37
"flake8": {"enabled": False},
38
"mccabe": {"enabled": False},
39
"pycodestyle": {"enabled": False},
0 commit comments