From 6cd1f5e07a670030ae32920041f2096ce43db215 Mon Sep 17 00:00:00 2001 From: bretello Date: Wed, 19 May 2021 10:31:19 +0200 Subject: [PATCH] vim: update ale config (rust+pylint) --- vim/plugins_config.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 817cffb..299197f 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -25,7 +25,7 @@ let g:ale_fixers = { let g:ale_fixers_aliases = {'vue': ['vue', 'javascript']} let g:ale_python_bandit_options = "-c banditrc" -let g:ale_python_pylint_options = "--disable=W0511" +let g:ale_python_pylint_options = "-j0 --disable=W0511" " let g:ale_cpp_clang_options = '-std=c++17 -Wall -Wpedantic' " let g:ale_cpp_gcc_options = '-std=c++17 -Wall -Wpedantic' @@ -36,7 +36,7 @@ let g:ale_linters = { \ 'cpp': ['clangd'], \ 'python': ['pyls', 'pylint', 'bandit', 'mypy'], \ 'go': ['gopls', 'gobuild'], - \ 'rust': ['analyzer', 'rustc'], + \ 'rust': ['analyzer', 'cargo', 'rls'], \ 'yaml': ['yamllint'], \ 'javascript': ["yarn lint", "eslint", "vls"] \}