diff options
author | w0rp <devw0rp@gmail.com> | 2017-01-15 13:05:07 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-01-15 13:05:07 +0000 |
commit | f1ac7c9f737b43c7de0715923b10c2be76cbc9ed (patch) | |
tree | 9c8a6a356bec378c8cbb5717074a660e8753a8a3 /ale_linters/python | |
parent | 548ff299f4d68890ec7d00a7d20a78c820b0bb2b (diff) | |
download | ale-f1ac7c9f737b43c7de0715923b10c2be76cbc9ed.zip |
Rename pylint _args variables to _options variables
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/pylint.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 95e5f0ef..f0cd5bd6 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -4,8 +4,8 @@ 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', '') +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 @@ -14,7 +14,7 @@ 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 + \ . ' ' . g:ale_python_pylint_options \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} {msg}" --reports n' endfunction |