summaryrefslogtreecommitdiff
path: root/ale_linters/python/pylint.vim
diff options
context:
space:
mode:
authorSABATIER Boris <boris.sabatier@stormshield.eu>2017-01-03 11:52:58 +0100
committerSABATIER Boris <boris.sabatier@stormshield.eu>2017-01-13 10:59:39 +0100
commit0a9f9c0811e563a5f23133796026c532acc22fd6 (patch)
treeac719f6dff9203238d4af2efd371ac6893b9d2b2 /ale_linters/python/pylint.vim
parentf412b4f96fa49f4ed856db25c10bdf4b9c2e4cec (diff)
downloadale-0a9f9c0811e563a5f23133796026c532acc22fd6.zip
Add executable and arguments options for pylint linter
Diffstat (limited to 'ale_linters/python/pylint.vim')
-rw-r--r--ale_linters/python/pylint.vim21
1 files changed, 19 insertions, 2 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim
index 9e6093c7..95e5f0ef 100644
--- a/ale_linters/python/pylint.vim
+++ b/ale_linters/python/pylint.vim
@@ -1,9 +1,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_args =
+\ get(g:, 'ale_python_pylint_args', '')
+
+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_args
+ \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n'
+endfunction
+
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',
+\ 'executable_callback': 'ale_linters#python#pylint#GetExecutable',
+\ 'command_callback': 'ale_linters#python#pylint#GetCommand',
\ 'callback': 'ale#handlers#HandlePEP8Format',
\})