summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-07-01 13:15:12 +0100
committerw0rp <devw0rp@gmail.com>2018-07-01 13:15:12 +0100
commite5e14de9aeb23ad8e58a4e69a6b0f2972f9ca3bc (patch)
tree8563b6d29f0dbf074650cfcbc9df8d1ef2ddc155
parentfee5107d435a0dd647efd3682eef0c37ef804fa0 (diff)
downloadale-e5e14de9aeb23ad8e58a4e69a6b0f2972f9ca3bc.zip
Capture error codes for yamlllint
-rw-r--r--ale_linters/yaml/yamllint.vim28
-rw-r--r--test/handler/test_yamllint_handler.vader3
2 files changed, 18 insertions, 13 deletions
diff --git a/ale_linters/yaml/yamllint.vim b/ale_linters/yaml/yamllint.vim
index 731f8012..9e075a75 100644
--- a/ale_linters/yaml/yamllint.vim
+++ b/ale_linters/yaml/yamllint.vim
@@ -20,21 +20,25 @@ function! ale_linters#yaml#yamllint#Handle(buffer, lines) abort
" Matches patterns line the following:
" something.yaml:1:1: [warning] missing document start "---" (document-start)
" something.yml:2:1: [error] syntax error: expected the node content, but found '<stream end>'
- let l:pattern = '^.*:\(\d\+\):\(\d\+\): \[\(error\|warning\)\] \(.\+\)$'
+ let l:pattern = '\v^.*:(\d+):(\d+): \[(error|warning)\] (.+)$'
let l:output = []
for l:match in ale#util#GetMatches(a:lines, l:pattern)
- let l:line = l:match[1] + 0
- let l:col = l:match[2] + 0
- let l:type = l:match[3]
- let l:text = l:match[4]
-
- call add(l:output, {
- \ 'lnum': l:line,
- \ 'col': l:col,
- \ 'text': l:text,
- \ 'type': l:type is# 'error' ? 'E' : 'W',
- \})
+ let l:item = {
+ \ 'lnum': l:match[1] + 0,
+ \ 'col': l:match[2] + 0,
+ \ 'text': l:match[4],
+ \ 'type': l:match[3] is# 'error' ? 'E' : 'W',
+ \}
+
+ let l:code_match = matchlist(l:item.text, '\v^(.+) \(([^)]+)\)$')
+
+ if !empty(l:code_match)
+ let l:item.text = l:code_match[1]
+ let l:item.code = l:code_match[2]
+ endif
+
+ call add(l:output, l:item)
endfor
return l:output
diff --git a/test/handler/test_yamllint_handler.vader b/test/handler/test_yamllint_handler.vader
index b1c4ad4f..5ba14bc8 100644
--- a/test/handler/test_yamllint_handler.vader
+++ b/test/handler/test_yamllint_handler.vader
@@ -11,7 +11,8 @@ Execute:
\ 'lnum': 1,
\ 'col': 1,
\ 'type': 'W',
- \ 'text': 'missing document start "---" (document-start)',
+ \ 'text': 'missing document start "---"',
+ \ 'code': 'document-start',
\ },
\ {
\ 'lnum': 2,