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
|
|
|
|
2017-05-06 18:11:43 +00:00
|
|
|
let g:ale_python_pylint_use_global = get(g:, 'ale_python_pylint_use_global', 0)
|
|
|
|
|
2017-01-03 10:52:58 +00:00
|
|
|
function! ale_linters#python#pylint#GetExecutable(buffer) abort
|
2017-05-06 18:11:43 +00:00
|
|
|
if !ale#Var(a:buffer, 'python_pylint_use_global')
|
|
|
|
let l:virtualenv = ale#python#FindVirtualenv(a:buffer)
|
|
|
|
|
|
|
|
if !empty(l:virtualenv)
|
|
|
|
let l:ve_pylint = l:virtualenv . '/bin/pylint'
|
|
|
|
|
|
|
|
if executable(l:ve_pylint)
|
|
|
|
return l:ve_pylint
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-04-16 00:24:08 +00:00
|
|
|
return ale#Var(a:buffer, 'python_pylint_executable')
|
2017-01-03 10:52:58 +00:00
|
|
|
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-04-16 00:24:08 +00:00
|
|
|
\ . ' ' . ale#Var(a:buffer, 'python_pylint_options')
|
2017-02-25 18:23:36 +00:00
|
|
|
\ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {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',
|
2017-04-24 21:27:18 +00:00
|
|
|
\ 'callback': 'ale#handlers#python#HandlePEP8Format',
|
2016-10-27 06:24:32 +00:00
|
|
|
\})
|