diff options
Diffstat (limited to 'ale_linters/php')
-rw-r--r-- | ale_linters/php/phpcs.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/php/phpcs.vim b/ale_linters/php/phpcs.vim index 67ac6b5a..a028964d 100644 --- a/ale_linters/php/phpcs.vim +++ b/ale_linters/php/phpcs.vim @@ -42,7 +42,7 @@ function! ale_linters#php#phpcs#Handle(buffer, lines) \ 'vcol': 0, \ 'col': l:match[2] + 0, \ 'text': l:text, - \ 'type': l:type ==# 'warning' ? 'W' : 'E', + \ 'type': l:type ==# 'error' ? 'E' : 'W', \ 'nr': -1, \}) endfor |