diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-02-25 19:19:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-25 19:19:45 +0000 |
commit | f1e80b800cc8c8488c9561b0db07304157ae489b (patch) | |
tree | 0fbffdbfd68f9f37d1099cd0ad6e7410941ea85e | |
parent | f48f306ab96eacc2519deea32b28ffb7e1a8a880 (diff) | |
parent | 9c93e79a6654d0b42bd0549e4947a8d2be038393 (diff) | |
download | ale-f1e80b800cc8c8488c9561b0db07304157ae489b.zip |
Merge pull request #364 from jsivak/feature/pylint_symbol
Add the pylint symbol name for the msg_id of the error/warning.
-rw-r--r-- | ale_linters/python/pylint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index ada1bfa2..88dc4b42 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -14,7 +14,7 @@ endfunction function! ale_linters#python#pylint#GetCommand(buffer) abort return 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' + \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n' \ . ' %t' endfunction |