From cc11ccc1266ed8221f7210c4c165705634d71949 Mon Sep 17 00:00:00 2001 From: Oxbian Date: Sun, 9 Jul 2023 22:40:33 +0200 Subject: Removing python useless linters --- .vim/after/ftplugin/python.vim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.vim/after/ftplugin/python.vim') diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim index fe4ed31..bd158fa 100644 --- a/.vim/after/ftplugin/python.vim +++ b/.vim/after/ftplugin/python.vim @@ -1,16 +1,19 @@ " Python let g:lsp_settings = {} -let g:lsp_settings['pylsp'] = +let g:lsp_settings['pylsp-all'] = \ { - \ 'workspace_config': {'pylsp': { + \ 'workspace_config': {'pylsp-all': { \ 'configurationSources': ['flake8'], \ 'plugins': { + \ 'pyflakes' : {'enabled': v:false}, \ 'flake8': {'enabled': v:true}, \ 'mypy-ls': {'enabled': v:true, 'live_mode': v:false}, \ 'pylint': {'enabled': v:true}, \ 'pydocstyle': {'enabled': v:true}, \ 'pyls_isort': {'enabled': v:true}, + \ 'autopep8': {'enabled': v:false}, + \ 'yapf': {'enabled': v:false}, \ 'black': {'enabled': v:true}, \ } \ }} -- cgit v1.2.3