ale/ale_linters/python/flake8.vim

10 lines
240 B
VimL
Raw Normal View History

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