Rubocop: Show cop name

This commit is contained in:
Junegunn Choi
2017-08-02 13:55:24 +09:00
parent 35913d9ce7
commit bc1cf285c2
2 changed files with 5 additions and 5 deletions

View File

@@ -12,28 +12,28 @@ Execute(The rubocop handler should parse lines correctly):
\ 'lnum': 83,
\ 'col': 29,
\ 'end_col': 35,
\ 'text': 'Prefer single-quoted strings...',
\ 'text': 'Prefer single-quoted strings... [Style/SomeCop]',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 12,
\ 'col': 2,
\ 'end_col': 2,
\ 'text': 'Some error',
\ 'text': 'Some error [Style/SomeOtherCop]',
\ 'type': 'E',
\ },
\ {
\ 'lnum': 10,
\ 'col': 5,
\ 'end_col': 12,
\ 'text': 'Regular warning',
\ 'text': 'Regular warning [Style/WarningCop]',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 11,
\ 'col': 1,
\ 'end_col': 1,
\ 'text': 'Another error',
\ 'text': 'Another error [Style/SpaceBeforeBlockBraces]',
\ 'type': 'E',
\ },
\ ],