feat(LSP): Add pylint executable explicitly

Without telling python-lsp-server which the pylint executable is,
explicitly, the plugin never runs.  This modification ensures the plugin
is running.
This commit is contained in:
Dionisio E Alonso 2024-02-06 08:06:18 -03:00
parent 54938dd02c
commit 6b5452f9d1
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@
'(:pylsp (:configurationSources ["flake8"]
:plugins (:ruff (:enabled t)
:flake8 (:enabled t)
:pylint (:enabled t)
:pylint (:enabled t
:executable "pylint")
:pylsp_mypy (:enabled t)
:pycodestyle (:enabled nil)
:pyflakes (:enabled nil)))))