From 10627b4169a39c6a381e326af5d77249265b5f43 Mon Sep 17 00:00:00 2001 From: ViktorBarzin Date: Tue, 27 Mar 2018 00:00:02 +0300 Subject: [PATCH] Add new stuff --- .vimrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index e1a6e32..a90b3ee 100644 --- a/.vimrc +++ b/.vimrc @@ -50,7 +50,9 @@ set statusline+=%* let g:syntastic_always_populate_loc_list = 0 let g:syntastic_auto_loc_list = 0 let g:syntastic_check_on_open = 0 +let g:syntastic_python_checkers = ['flake8'] +nnoremap :SyntasticCheck mypy " Set xptemplate trigger key to tab let g:xptemplate_key = '' @@ -247,9 +249,9 @@ syntax on " Ignore flake8 E501 for lines longer than 80 characters " E128 - visual continuation " W391 - blank line at end of file -let g:syntastic_python_flake8_args='--ignore=W391, E501, E702' -let g:syntastic_python_flake8_show_quickfix=1 -let g:pymode_lint_ignore="E501,W601,W391,W0401,E702" +" let g:syntastic_python_flake8_args='--ignore=W391, E501, E701, E702' +" let g:syntastic_python_flake8_show_quickfix=1 +let g:pymode_lint_ignore="E501,W601,W391,W0401,E702,E701" let g:pymode_lint_cwindow = 1 let g:pymode_rope = 1 let g:pymode_rope_lookup_project = 0