vim-syntastic / syntastic

Syntax checking hacks for vim
Do What The F*ck You Want To Public License
11.3k stars 1.14k forks source link

Allow execution of multiple linters #2380

Closed spaceone closed 2 years ago

spaceone commented 2 years ago

I configured let g:syntastic_python_checkers = ['flake8', 'pycodestyle'] (and some others). When one of the tools reports issues, the other tool is not executed anymore. I would like that the output of both/all tools is combined.

lcd047 commented 2 years ago

Please read :h 'syntastic_aggregate_errors'.

spaceone commented 2 years ago

Great!