diff options
author | John Sivak <jsivak@morpace.com> | 2017-02-25 13:23:36 -0500 |
---|---|---|
committer | John Sivak <jsivak@morpace.com> | 2017-02-25 13:23:36 -0500 |
commit | 9c93e79a6654d0b42bd0549e4947a8d2be038393 (patch) | |
tree | 0fbffdbfd68f9f37d1099cd0ad6e7410941ea85e | |
parent | f48f306ab96eacc2519deea32b28ffb7e1a8a880 (diff) | |
download | ale-9c93e79a6654d0b42bd0549e4947a8d2be038393.zip |
Add display of the pylint symbol name for the msg_id.
-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 |