diff options
Diffstat (limited to 'ale_linters/json/jq.vim')
-rw-r--r-- | ale_linters/json/jq.vim | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/ale_linters/json/jq.vim b/ale_linters/json/jq.vim index dd6ed0a6..2f36a29e 100644 --- a/ale_linters/json/jq.vim +++ b/ale_linters/json/jq.vim @@ -1,32 +1,24 @@ " Author: jD91mZM2 <me@krake.one> +call ale#Set('json_jq_executable', 'jq') +call ale#Set('json_jq_options', '') +call ale#Set('json_jq_filters', '.') -function! ale_linters#json#jq#GetCommand(buffer) abort - let l:executable = ale#fixers#jq#GetExecutable(a:buffer) - - return ale#Escape(l:executable) -endfunction +" Matches patterns like the following: +" parse error: Expected another key-value pair at line 4, column 3 +let s:pattern = '^parse error: \(.\+\) at line \(\d\+\), column \(\d\+\)$' function! ale_linters#json#jq#Handle(buffer, lines) abort - " Matches patterns like the following: - " parse error: Expected another key-value pair at line 4, column 3 - let l:pattern = '^parse error: \(.\+\) at line \(\d\+\), column \(\d\+\)$' - let l:output = [] - - for l:match in ale#util#GetMatches(a:lines, l:pattern) - call add(l:output, { - \ 'text': l:match[1], - \ 'lnum': l:match[2] + 0, - \ 'col': l:match[3] + 0, - \}) - endfor - - return l:output + return ale#util#MapMatches(a:lines, s:pattern, {match -> { + \ 'text': match[1], + \ 'lnum': match[2] + 0, + \ 'col': match[3] + 0, + \}}) endfunction call ale#linter#Define('json', { \ 'name': 'jq', -\ 'executable': function('ale#fixers#jq#GetExecutable'), +\ 'executable': {b -> ale#Var(b, 'json_jq_executable')}, \ 'output_stream': 'stderr', -\ 'command': function('ale_linters#json#jq#GetCommand'), +\ 'command': '%e', \ 'callback': 'ale_linters#json#jq#Handle', \}) |