2016-10-27 06:24:32 +00:00
|
|
|
" Author: keith <k@keith.so>
|
|
|
|
" Description: pylint for python files
|
|
|
|
|
2017-01-03 10:52:58 +00:00
|
|
|
let g:ale_python_pylint_executable =
|
|
|
|
\ get(g:, 'ale_python_pylint_executable', 'pylint')
|
|
|
|
|
2017-01-15 13:05:07 +00:00
|
|
|
let g:ale_python_pylint_options =
|
|
|
|
\ get(g:, 'ale_python_pylint_options', '')
|
2017-01-03 10:52:58 +00:00
|
|
|
|
|
|
|
function! ale_linters#python#pylint#GetExecutable(buffer) abort
|
|
|
|
return g:ale_python_pylint_executable
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#python#pylint#GetCommand(buffer) abort
|
2017-02-11 19:40:57 +00:00
|
|
|
return ale_linters#python#pylint#GetExecutable(a:buffer)
|
2017-01-15 13:05:07 +00:00
|
|
|
\ . ' ' . g:ale_python_pylint_options
|
2017-01-03 10:52:58 +00:00
|
|
|
\ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n'
|
2017-02-11 19:40:57 +00:00
|
|
|
\ . ' %t'
|
2017-01-03 10:52:58 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-10-27 06:24:32 +00:00
|
|
|
call ale#linter#Define('python', {
|
|
|
|
\ 'name': 'pylint',
|
2017-01-03 10:52:58 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#python#pylint#GetExecutable',
|
|
|
|
\ 'command_callback': 'ale_linters#python#pylint#GetCommand',
|
2016-10-27 06:24:32 +00:00
|
|
|
\ 'callback': 'ale#handlers#HandlePEP8Format',
|
|
|
|
\})
|