summaryrefslogtreecommitdiff
path: root/ale_linters/handlebars
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-12-19 17:42:51 +0000
committerw0rp <devw0rp@gmail.com>2017-12-19 17:42:51 +0000
commitcc8e5502c8fd9d0d2ba405214e05f90b4152e2b2 (patch)
tree1c6c9677aef120bf464dadda2645836230edc7ef /ale_linters/handlebars
parent0ad254799781ba1e00b13b26dfbee5c6fed9684f (diff)
downloadale-cc8e5502c8fd9d0d2ba405214e05f90b4152e2b2.zip
Fix #1240 - Parse line and column numbers for fatal embertemplatelint errors
Diffstat (limited to 'ale_linters/handlebars')
-rw-r--r--ale_linters/handlebars/embertemplatelint.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/ale_linters/handlebars/embertemplatelint.vim b/ale_linters/handlebars/embertemplatelint.vim
index 963ab568..68ea7155 100644
--- a/ale_linters/handlebars/embertemplatelint.vim
+++ b/ale_linters/handlebars/embertemplatelint.vim
@@ -22,15 +22,13 @@ function! ale_linters#handlebars#embertemplatelint#Handle(buffer, lines) abort
for l:error in get(values(l:json), 0, [])
if has_key(l:error, 'fatal')
call add(l:output, {
- \ 'bufnr': a:buffer,
- \ 'lnum': 1,
- \ 'col': 1,
+ \ 'lnum': get(l:error, 'line', 1),
+ \ 'col': get(l:error, 'column', 1),
\ 'text': l:error.message,
\ 'type': l:error.severity == 1 ? 'W' : 'E',
\})
else
call add(l:output, {
- \ 'bufnr': a:buffer,
\ 'lnum': l:error.line,
\ 'col': l:error.column,
\ 'text': l:error.rule . ': ' . l:error.message,