#852 - Capture error codes for Rubocop

This commit is contained in:
Aliou Diallo
2017-11-14 17:50:15 +01:00
parent 16e7dc2371
commit 425482116e
2 changed files with 10 additions and 5 deletions

View File

@@ -34,7 +34,8 @@ function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
\ 'lnum': l:error['location']['line'] + 0,
\ 'col': l:start_col,
\ 'end_col': l:start_col + l:error['location']['length'] - 1,
\ 'text': printf('%s [%s]', l:error['message'], l:error['cop_name']),
\ 'code': l:error['cop_name'],
\ 'text': l:error['message'],
\ 'type': ale_linters#ruby#rubocop#GetType(l:error['severity']),
\})
endfor