Closed
Description
I'm sending the following configuration to pylsp via the didChangeConfiguration notification but I don't get the desired effect of disabling error code D101:
{
"pylsp": {
"plugins": {
"pycodestyle": {
"enabled": false
},
"pyflakes": {
"enabled": false
},
"ruff": {
"enabled": true,
"ignore": [
"D101"
]
}
}
}
}
However, if I switch pylsp.ruff.enabled
to false
, the plugin is disabled, so the editor part of my setup must be working.
Metadata
Metadata
Assignees
Labels
No labels