changeset 252:a2e31e166cb9

Just keep flake8 for Python checking in Vim.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 06 Jan 2015 23:17:26 -0800
parents 7fd33f60cfee
children 18d7db1d1863
files vim/vimrc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/vim/vimrc	Tue Jan 06 23:10:58 2015 -0800
+++ b/vim/vimrc	Tue Jan 06 23:17:26 2015 -0800
@@ -253,7 +253,7 @@
 
 " flake8 includes pyflakes, pep8, and mccabe
 " I could maybe replace pyflakes with frosted?
-let g:syntastic_python_checkers = ['flake8', 'pylint']
+let g:syntastic_python_checkers = ['flake8'] ", 'pylint']
 let g:syntastic_python_python_exec = 'python3'
 
 " }}}