* Use of python-lsp-server with emacs (cf. .dir-locals.el file) * Remove autopep8/pycodestyle/pydocstyle/pyflakes/pylint/yapf
11 lines
396 B
EmacsLisp
11 lines
396 B
EmacsLisp
;; Cf. https://gist.github.com/doolio/8c1768ebf33c483e6d26e5205896217f
|
|
((python-mode
|
|
. ((eglot-workspace-configuration
|
|
. (:pylsp (:plugins (:pylint (:enabled :json-false)
|
|
:pycodestyle (:enabled :json-false)
|
|
:yapf (:enabled :json-false)
|
|
:pyflakes (:enabled :json-false)
|
|
:ruff (:enabled t)
|
|
:mypy (:enabled t)
|
|
:black (:enabled t))))))))
|