38 lines
938 B
VimL
38 lines
938 B
VimL
" Author: hauleth - https://github.com/hauleth
|
|
|
|
function! ale_linters#dockerfile#hadolint#Handle(buffer, lines) abort
|
|
" Matches patterns line the following:
|
|
"
|
|
" stdin:19: F: Pipe chain should start with a raw value.
|
|
let l:pattern = '\v^/dev/stdin:?(\d+)? (\S+) (.+)$'
|
|
let l:output = []
|
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
|
let l:lnum = 0
|
|
|
|
if l:match[1] !=# ''
|
|
let l:lnum = l:match[1] + 0
|
|
endif
|
|
|
|
let l:type = 'W'
|
|
let l:text = l:match[3]
|
|
|
|
call add(l:output, {
|
|
\ 'lnum': l:lnum,
|
|
\ 'col': 0,
|
|
\ 'type': l:type,
|
|
\ 'text': l:text,
|
|
\ 'nr': l:match[2],
|
|
\})
|
|
endfor
|
|
|
|
return l:output
|
|
endfunction
|
|
|
|
call ale#linter#Define('dockerfile', {
|
|
\ 'name': 'hadolint',
|
|
\ 'executable': 'hadolint',
|
|
\ 'command': 'hadolint -',
|
|
\ 'callback': 'ale_linters#dockerfile#hadolint#Handle',
|
|
\})
|