vim: update ale config (rust+pylint)

feature/improve-speed
bretello 2021-05-19 10:31:19 +02:00
parent 5f84402142
commit 6cd1f5e07a
1 changed files with 2 additions and 2 deletions

View File

@ -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"]
\}