From ec3225325799b70423908cffe3ab84fb9a4e0f51 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Fri, 20 Nov 2020 16:02:53 +0000 Subject: [PATCH] Use the python -m pylint for pylint --- states/vim/files/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 53d4657..2cb9aa8 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -72,7 +72,7 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_python_python_exec = '/usr/bin/python3' -let g:syntastic_python_checkers = ['flake8', 'pylint'] +let g:syntastic_python_checkers = ['flake8', 'python3 -m pylint'] let g:syntastic_aggregate_errors = 1 " Syntastic C++11 -- 2.44.0