diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 57c3870..d339daa 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -57,7 +57,7 @@ function! ale_linters#python#pylint#Handle(buffer, lines) abort call add(l:output, { \ 'lnum': l:match[1] + 0, \ 'col': l:match[2] + 1, - \ 'text': l:code . ': ' . l:match[5], + \ 'text': l:code . ': ' . l:match[5] . ' (' . l:match[4] . ')', \ 'type': l:code[:0] ==# 'E' ? 'E' : 'W', \}) endfor diff --git a/test/handler/test_pylint_handler.vader b/test/handler/test_pylint_handler.vader index 590a795..d8ce043 100644 --- a/test/handler/test_pylint_handler.vader +++ b/test/handler/test_pylint_handler.vader @@ -11,31 +11,31 @@ Execute(pylint handler parsing, translating columns to 1-based index): \ { \ 'lnum': 4, \ 'col': 1, - \ 'text': 'C0303: Trailing whitespace', + \ 'text': 'C0303: Trailing whitespace (trailing-whitespace)', \ 'type': 'W', \ }, \ { \ 'lnum': 1, \ 'col': 1, - \ 'text': 'C0111: Missing module docstring', + \ 'text': 'C0111: Missing module docstring (missing-docstring)', \ 'type': 'W', \ }, \ { \ 'lnum': 2, \ 'col': 1, - \ 'text': 'C0111: Missing function docstring', + \ 'text': 'C0111: Missing function docstring (missing-docstring)', \ 'type': 'W', \ }, \ { \ 'lnum': 3, \ 'col': 5, - \ 'text': 'E0103: ''break'' not properly in loop', + \ 'text': 'E0103: ''break'' not properly in loop (not-in-loop)', \ 'type': 'E', \ }, \ { \ 'lnum': 4, \ 'col': 5, - \ 'text': 'W0101: Unreachable code', + \ 'text': 'W0101: Unreachable code (unreachable)', \ 'type': 'W', \ }, \ ],