diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-06 19:30:41 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-06 19:30:41 +0100 |
commit | f2c9fc403a5c25a3b9265095f3b6d4cfac80c99e (patch) | |
tree | b101ea575984ef2d0edd190dbce58cce46888af5 /ale_linters/python | |
parent | 2e1c9b0fa574aa2e617734470d5dbec61abee928 (diff) | |
download | ale-f2c9fc403a5c25a3b9265095f3b6d4cfac80c99e.zip |
Fix #208 - Use the file on disk for pylint, and follow import paths
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/pylint.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 3ee8bb02..fa76a076 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -29,7 +29,7 @@ function! ale_linters#python#pylint#GetCommand(buffer) abort return ale_linters#python#pylint#GetExecutable(a:buffer) \ . ' ' . ale#Var(a:buffer, 'python_pylint_options') \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n' - \ . ' %t' + \ . ' %s' endfunction call ale#linter#Define('python', { @@ -37,4 +37,5 @@ call ale#linter#Define('python', { \ 'executable_callback': 'ale_linters#python#pylint#GetExecutable', \ 'command_callback': 'ale_linters#python#pylint#GetCommand', \ 'callback': 'ale#handlers#python#HandlePEP8Format', +\ 'lint_file': 1, \}) |