Fix style and test

This commit is contained in:
max ulidtko
2020-05-06 13:43:20 +03:00
parent 5f4103fb35
commit c0d74b8094
2 changed files with 9 additions and 2 deletions

View File

@@ -33,7 +33,8 @@ function! ale_linters#dockerfile#dockerfile_lint#Handle(buffer, lines) abort
let l:message = l:object['message']
let l:link = get(l:object, 'reference_url', '')
if type(l:link) == type([])
if type(l:link) == v:t_list
" Somehow, reference_url is returned as two-part list.
" Anchor markers in that list are sometimes duplicated.
" See https://github.com/projectatomic/dockerfile_lint/issues/134
@@ -42,9 +43,11 @@ function! ale_linters#dockerfile#dockerfile_lint#Handle(buffer, lines) abort
endif
let l:detail = l:message
if get(l:object, 'description', 'None') isnot# 'None'
let l:detail .= "\n\n" . l:object['description']
endif
let l:detail .= "\n\n" . l:link
call add(l:messages, {