How to use synstastic in vim to display only pylint error messages? I basically want the output of pylint -E
to be used as source for syntastic. I tried to configure syntastic in my .vimrc
with:
let g:syntastic_python_checkers = ['python', 'pylint -E']
which did not work. Also, I tried to configure pylint to show only errors without the -E flag via the following lines in my .pylintrc
:
disable=all
enable=E
which seems to be only disable=all
.
Wanted to add a different type of answer, since I was able to get this to work:
Adding arguments to syntastic
works a little differently than as mentioned by OP. Instead, what I have is, in my .vimrc
:
let g:syntastic_python_checkers = ['pylint'] "" or ['flake8', 'pylint'], etc
let g:syntastic_python_pylint_args = '-E'
"" to show it accepts a string of args, also:
let g:syntastic_python_pylint_args = '--rcfile=/path/to/rc -E'
It works by disabling all other categories in .pylintrc
:
disable=C, F, I, R, W
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With