2017-01-30 15:27:26 +00:00
|
|
|
" Author: hauleth - https://github.com/hauleth
|
|
|
|
|
2017-07-03 14:37:32 +00:00
|
|
|
" always, yes, never
|
|
|
|
call ale#Set('dockerfile_hadolint_use_docker', 'never')
|
|
|
|
call ale#Set('dockerfile_hadolint_docker_image', 'lukasmartinelli/hadolint')
|
|
|
|
|
2017-01-30 15:27:26 +00:00
|
|
|
function! ale_linters#dockerfile#hadolint#Handle(buffer, lines) abort
|
2017-04-15 11:52:08 +00:00
|
|
|
" 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 = []
|
|
|
|
|
2017-04-17 23:35:53 +00:00
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
2017-04-15 11:52:08 +00:00
|
|
|
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
|
2017-01-30 15:27:26 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-07-03 14:37:32 +00:00
|
|
|
" This is a little different than the typical 'executable' callback. We want
|
|
|
|
" to afford the user the chance to say always use docker, never use docker,
|
|
|
|
" and use docker if the hadolint executable is not present on the system.
|
|
|
|
"
|
|
|
|
" In the case of neither docker nor hadolint executables being present, it
|
|
|
|
" really doesn't matter which we return -- either will have the effect of
|
|
|
|
" 'nope, can't use this linter!'.
|
|
|
|
|
|
|
|
function! ale_linters#dockerfile#hadolint#GetExecutable(buffer) abort
|
|
|
|
let l:use_docker = ale#Var(a:buffer, 'dockerfile_hadolint_use_docker')
|
|
|
|
|
|
|
|
" check for mandatory directives
|
2017-08-08 07:39:13 +00:00
|
|
|
if l:use_docker is# 'never'
|
2017-07-03 14:37:32 +00:00
|
|
|
return 'hadolint'
|
2017-08-08 07:39:13 +00:00
|
|
|
elseif l:use_docker is# 'always'
|
2017-07-03 14:37:32 +00:00
|
|
|
return 'docker'
|
|
|
|
endif
|
|
|
|
|
|
|
|
" if we reach here, we want to use 'hadolint' if present...
|
|
|
|
if executable('hadolint')
|
|
|
|
return 'hadolint'
|
|
|
|
endif
|
|
|
|
|
|
|
|
"... and 'docker' as a fallback.
|
|
|
|
return 'docker'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#dockerfile#hadolint#GetCommand(buffer) abort
|
|
|
|
let l:command = ale_linters#dockerfile#hadolint#GetExecutable(a:buffer)
|
2017-08-08 07:39:13 +00:00
|
|
|
if l:command is# 'docker'
|
2017-07-03 14:37:32 +00:00
|
|
|
return 'docker run --rm -i ' . ale#Var(a:buffer, 'dockerfile_hadolint_docker_image')
|
|
|
|
endif
|
|
|
|
return 'hadolint -'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2017-01-30 15:27:26 +00:00
|
|
|
call ale#linter#Define('dockerfile', {
|
2017-04-15 11:52:08 +00:00
|
|
|
\ 'name': 'hadolint',
|
2017-07-03 14:37:32 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#dockerfile#hadolint#GetExecutable',
|
|
|
|
\ 'command_callback': 'ale_linters#dockerfile#hadolint#GetCommand',
|
2017-04-15 11:52:08 +00:00
|
|
|
\ 'callback': 'ale_linters#dockerfile#hadolint#Handle',
|
|
|
|
\})
|