From 83dd9bff5db085175d8eba86a06c6f145dfb0fa2 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Wed, 19 May 2021 14:54:47 +0100 Subject: [PATCH] Use flake8 and python for performance linting --- states/vim/files/vimrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 0c5213f..ea9904b 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -69,8 +69,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 = ['pylint'] -let g:syntastic_python_pylint_args = '-E' +let g:syntastic_python_checkers = ['python', 'flake8'] let g:syntastic_aggregate_errors = 1 " Syntastic C++11 -- 2.44.0