Skip to content

Commit 75f8275

Browse files
ryankaskjhossbach
andauthored
Disable pyflakes (#9)
* Disable pyflakes * update README Co-authored-by: Julian Hossbach <[email protected]>
1 parent faa07d9 commit 75f8275

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ There also exists an [AUR package](https://aur.archlinux.org/packages/python-lsp
1818

1919
# Usage
2020

21-
This plugin will disable `flake8`, `pycodestyle` and `mccabe` by default.
21+
This plugin will disable `flake8`, `pycodestyle`, `pyflakes` and `mccabe` by default.
2222
When enabled, all linting diagnostics will be provided by `ruff`.
2323

2424
# Configuration

pylsp_ruff/ruff_lint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def pylsp_settings():
3333
"perFileIgnores": None,
3434
"select": None,
3535
},
36+
"pyflakes": {"enabled": False},
3637
"flake8": {"enabled": False},
3738
"mccabe": {"enabled": False},
3839
"pycodestyle": {"enabled": False},

0 commit comments

Comments
 (0)