From 1a38ce9c28f4cbfe931f86980b15d507dd77e354 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 18 Jul 2018 10:23:34 +0200 Subject: [PATCH] Remove syntastic config, as ALE has replaced it --- .vimrc | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/.vimrc b/.vimrc index bedb064..c5decb4 100644 --- a/.vimrc +++ b/.vimrc @@ -254,40 +254,6 @@ endif " Improved Django handling Plugin 'tweekmonster/django-plus.vim' -" Code checker. For python, install flake8 or pylint, preferably in the -" virtualenv. For Django support, install pylint-django -"Disabled, using ALE instead (see below); the settings here are not needed -"Plugin 'vim-syntastic/syntastic' -set statusline+=%#warningmsg# -set statusline+=%{SyntasticStatuslineFlag()} -set statusline+=%* - -let g:syntastic_always_populate_loc_list = 1 -let g:syntastic_auto_loc_list = 1 -let g:syntastic_check_on_open = 0 -let g:syntastic_check_on_wq = 0 - -let g:syntastic_error_symbol = '✗' -let g:syntastic_warning_symbol = '⚠' - -"let g:syntastic_python_checkers = ['pylint'] -"let g:syntastic_python_checkers = ['pylint', 'flake8', 'pyflakes'] - -" No silly 80-char line limit. Sorry pep-8. Also, Django support. Disable 'invalid name', 'missing docstring' -"let g:syntastic_python_pylint_post_args="--max-line-length=120 --load-plugins pylint_django -d C0103,C0111" -let g:syntastic_python_pylint_post_args="--max-line-length=120 -d C0103,C0111" - -" Use the virtualenv's Python interpreter -"if $VIRTUAL_ENV != '' -" let g:syntastic_python_python_exec = '$VIRTUAL_ENV/bin/python' -"endif - -"let g:syntastic_python_checkers=['pylint'] -"let g:syntastic_python_python_exec = 'python' -"let g:syntastic_python_pylint_exe = 'python -m pylint' -"let g:syntastic_python_pylint_exe = 'python $(which pylint)' - - " Code checker. For python, install flake8 or pylint, preferably in the " virtualenv. For Django support, install pylint-django Plugin 'w0rp/ale'