blob: 9e6093c72da49dd0c1dd1abcae37f23d7c0b2ae9 (
plain)
1
2
3
4
5
6
7
8
9
|
" Author: keith <k@keith.so>
" Description: pylint for python files
call ale#linter#Define('python', {
\ 'name': 'pylint',
\ 'executable': 'pylint',
\ 'command': g:ale#util#stdin_wrapper . ' .py pylint --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n',
\ 'callback': 'ale#handlers#HandlePEP8Format',
\})
|