summaryrefslogtreecommitdiff
path: root/ale_linters/coffee/coffeelint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/coffee/coffeelint.vim')
-rw-r--r--ale_linters/coffee/coffeelint.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/ale_linters/coffee/coffeelint.vim b/ale_linters/coffee/coffeelint.vim
index e32f7b79..614f45aa 100644
--- a/ale_linters/coffee/coffeelint.vim
+++ b/ale_linters/coffee/coffeelint.vim
@@ -32,15 +32,12 @@ function! ale_linters#coffee#coffeelint#Handle(buffer, lines) abort
endif
let l:line = l:match[1] + 0
- let l:column = 1
let l:type = l:match[3] ==# 'error' ? 'E' : 'W'
let l:text = l:match[4]
- " vcol is needed to indicate that the column is a character
call add(l:output, {
\ 'bufnr': a:buffer,
\ 'lnum': l:line,
- \ 'col': l:column,
\ 'text': l:text,
\ 'type': l:type,
\})