summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-02-25 19:19:45 +0000
committerGitHub <noreply@github.com>2017-02-25 19:19:45 +0000
commitf1e80b800cc8c8488c9561b0db07304157ae489b (patch)
tree0fbffdbfd68f9f37d1099cd0ad6e7410941ea85e /ale_linters
parentf48f306ab96eacc2519deea32b28ffb7e1a8a880 (diff)
parent9c93e79a6654d0b42bd0549e4947a8d2be038393 (diff)
downloadale-f1e80b800cc8c8488c9561b0db07304157ae489b.zip
Merge pull request #364 from jsivak/feature/pylint_symbol
Add the pylint symbol name for the msg_id of the error/warning.
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/python/pylint.vim2
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