diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
commit | e97dada261c4a69f43c5a6c34d349ad6246fe34c (patch) | |
tree | bbaf8aec8ec0474251bdd3e183eb93d06d80c792 /ale_linters/python/pylint.vim | |
parent | e80116cee03af66bb229c3f570f0b2f244f0a197 (diff) | |
download | ale-e97dada261c4a69f43c5a6c34d349ad6246fe34c.zip |
#427 Implement buffer variable overrides for all linter options
Diffstat (limited to 'ale_linters/python/pylint.vim')
-rw-r--r-- | ale_linters/python/pylint.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 88dc4b42..37788f11 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -8,12 +8,12 @@ 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 + return ale#Var(a:buffer, 'python_pylint_executable') endfunction function! ale_linters#python#pylint#GetCommand(buffer) abort return ale_linters#python#pylint#GetExecutable(a:buffer) - \ . ' ' . g:ale_python_pylint_options + \ . ' ' . ale#Var(a:buffer, 'python_pylint_options') \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n' \ . ' %t' endfunction |