pylsp: Update mypy plugin name (#21031)
Follow-up to #21025 Release Notes: - N/A
This commit is contained in:
parent
6c470748ac
commit
477c6e6833
1 changed files with 2 additions and 2 deletions
|
@ -919,7 +919,7 @@ impl LspAdapter for PyLspAdapter {
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"pycodestyle": {"enabled": false},
|
"pycodestyle": {"enabled": false},
|
||||||
"rope_autoimport": {"enabled": true, "memory": true},
|
"rope_autoimport": {"enabled": true, "memory": true},
|
||||||
"mypy": {"enabled": false}
|
"pylsp_mypy": {"enabled": false}
|
||||||
},
|
},
|
||||||
"rope": {
|
"rope": {
|
||||||
"ropeFolder": null
|
"ropeFolder": null
|
||||||
|
@ -947,7 +947,7 @@ impl LspAdapter for PyLspAdapter {
|
||||||
.or_insert_with(|| Value::String(toolchain.path.clone().into()));
|
.or_insert_with(|| Value::String(toolchain.path.clone().into()));
|
||||||
}
|
}
|
||||||
if let Some(pylint) = python
|
if let Some(pylint) = python
|
||||||
.entry("mypy")
|
.entry("pylsp_mypy")
|
||||||
.or_insert(Value::Object(serde_json::Map::default()))
|
.or_insert(Value::Object(serde_json::Map::default()))
|
||||||
.as_object_mut()
|
.as_object_mut()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue