summaryrefslogtreecommitdiff
path: root/ale_linters/python/pylint.vim
blob: f0cd5bd6b66e2859a59dc0a6f241f16e9de56caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" Author: keith <k@keith.so>
" Description: pylint for python files

let g:ale_python_pylint_executable =
\   get(g:, 'ale_python_pylint_executable', 'pylint')

let g:ale_python_pylint_options =
\   get(g:, 'ale_python_pylint_options', '')

function! ale_linters#python#pylint#GetExecutable(buffer) abort
    return g:ale_python_pylint_executable
endfunction

function! ale_linters#python#pylint#GetCommand(buffer) abort
    return g:ale#util#stdin_wrapper . ' .py '
    \   . ale_linters#python#pylint#GetExecutable(a:buffer)
    \   . ' ' . g:ale_python_pylint_options
    \   . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n'
endfunction

call ale#linter#Define('python', {
\   'name': 'pylint',
\   'executable_callback': 'ale_linters#python#pylint#GetExecutable',
\   'command_callback': 'ale_linters#python#pylint#GetCommand',
\   'callback': 'ale#handlers#HandlePEP8Format',
\})