ale/ale_linters/python/flake8.vim

10 lines
240 B
VimL
Raw Normal View History

2016-10-03 18:55:55 +00:00
" Author: w0rp <devw0rp@gmail.com>
" Description: flake8 for python files
call ale#linter#Define('python', {
\ 'name': 'flake8',
2016-09-13 21:23:37 +00:00
\ 'executable': 'flake8',
\ 'command': 'flake8 -',
\ 'callback': 'ale#handlers#HandlePEP8Format',
2016-09-13 21:23:37 +00:00
\})