From 7a06d276c255827df5c7c397e4871e5e887dcb39 Mon Sep 17 00:00:00 2001 From: w0rp Date: Thu, 20 Oct 2016 18:07:45 +0100 Subject: #131 Keep the error types in the message for eslint --- ale_linters/javascript/eslint.vim | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'ale_linters/javascript/eslint.vim') diff --git a/ale_linters/javascript/eslint.vim b/ale_linters/javascript/eslint.vim index c5a25555..d57b84ad 100644 --- a/ale_linters/javascript/eslint.vim +++ b/ale_linters/javascript/eslint.vim @@ -25,14 +25,8 @@ function! ale_linters#javascript#eslint#Handle(buffer, lines) continue endif - let l:text = l:match[3] - let l:marker = l:match[4] - let l:marker_parts = split(l:marker, '/') - let l:type = l:marker_parts[0] - - if len(l:marker_parts) == 2 - let l:text = l:text . ' (' . l:marker_parts[1] . ')' - endif + let l:type = split(l:match[4], '/')[0] + let l:text = l:match[3] . ' [' . l:match[4] . ']' " vcol is Needed to indicate that the column is a character. call add(l:output, { -- cgit v1.2.3