From f4db0c7419d7e352b0ec2fbe9c2d454e5ed99aed Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Wed, 5 May 2021 15:04:42 +0100 Subject: [PATCH] Enable error only checking with syntastic --- states/vim/files/vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index a40734b..d645f78 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -68,7 +68,8 @@ 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 = ['python3 -m pylint --error-only'] +let g:syntastic_python_checkers = ['pylint'] +let g:syntastic_python_pylint_args = '-E' let g:syntastic_aggregate_errors = 1 " Syntastic C++11 -- 2.44.0