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-07-05 12:07:55 +00:00
|
|
|
return ale#python#FindExecutable(a:buffer, 'python_pylint', ['pylint'])
|
2017-01-03 10:52:58 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#python#pylint#GetCommand(buffer) abort
|
2017-05-12 08:20:16 +00:00
|
|
|
return ale#Escape(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-05-06 18:30:41 +00:00
|
|
|
\ . ' %s'
|
2017-01-03 10:52:58 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-05-25 03:40:06 +00:00
|
|
|
function! ale_linters#python#pylint#Handle(buffer, lines) abort
|
|
|
|
" Matches patterns like the following:
|
|
|
|
"
|
|
|
|
" test.py:4:4: W0101 (unreachable) Unreachable code
|
2017-06-26 00:19:39 +00:00
|
|
|
let l:pattern = '\v^[^:]+:(\d+):(\d+): ([[:alnum:]]+) \(([^(]*)\) (.*)$'
|
2017-05-25 03:40:06 +00:00
|
|
|
let l:output = []
|
|
|
|
|
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
|
|
|
"let l:failed = append(0, l:match)
|
|
|
|
let l:code = l:match[3]
|
|
|
|
|
2017-08-08 07:39:13 +00:00
|
|
|
if (l:code is# 'C0303')
|
2017-05-25 03:40:06 +00:00
|
|
|
\ && !ale#Var(a:buffer, 'warn_about_trailing_whitespace')
|
|
|
|
" Skip warnings for trailing whitespace if the option is off.
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
2017-08-08 07:39:13 +00:00
|
|
|
if l:code is# 'I0011'
|
2017-05-25 03:40:06 +00:00
|
|
|
" Skip 'Locally disabling' message
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
|
|
|
call add(l:output, {
|
|
|
|
\ 'lnum': l:match[1] + 0,
|
|
|
|
\ 'col': l:match[2] + 1,
|
2017-06-25 17:22:13 +00:00
|
|
|
\ 'text': l:code . ': ' . l:match[5] . ' (' . l:match[4] . ')',
|
2017-08-08 07:39:13 +00:00
|
|
|
\ 'type': l:code[:0] is# 'E' ? 'E' : 'W',
|
2017-05-25 03:40:06 +00:00
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
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-05-25 03:40:06 +00:00
|
|
|
\ 'callback': 'ale_linters#python#pylint#Handle',
|
2017-05-06 18:30:41 +00:00
|
|
|
\ 'lint_file': 1,
|
2016-10-27 06:24:32 +00:00
|
|
|
\})
|