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 f7d1be1 commit b247d11Copy full SHA for b247d11
pylsp_ruff/ruff_lint.py
@@ -20,7 +20,7 @@
20
21
@hookimpl
22
def pylsp_settings():
23
- # flake8 and pycodestyle disabled by default with this plugin
+ # this plugin disables flake8, mccabe, and pycodestyle by default
24
return {
25
"plugins": {
26
"ruff": {
@@ -34,6 +34,7 @@ def pylsp_settings():
34
"select": None,
35
},
36
"flake8": {"enabled": False},
37
+ "mccabe": {"enabled": False},
38
"pycodestyle": {"enabled": False},
39
}
40
0 commit comments