mirror of
https://github.com/dense-analysis/ale
synced 2025-02-09 08:47:16 +00:00
Actionlint: correctly parse error line when using shellcheck sublinter (#4689)
This commit is contained in:
parent
d63f5e6a77
commit
17cca243e3
@ -21,15 +21,27 @@ endfunction
|
|||||||
function! ale_linters#yaml#actionlint#Handle(buffer, lines) abort
|
function! ale_linters#yaml#actionlint#Handle(buffer, lines) abort
|
||||||
" Matches patterns line the following:
|
" Matches patterns line the following:
|
||||||
".github/workflows/main.yml:19:0: could not parse as YAML: yaml: line 19: mapping values are not allowed in this context [yaml-syntax]
|
".github/workflows/main.yml:19:0: could not parse as YAML: yaml: line 19: mapping values are not allowed in this context [yaml-syntax]
|
||||||
let l:pattern = '\v^.*:(\d+):(\d+): (.+) \[(.+)\]$'
|
let l:pattern = '\v^.{-}:(\d+):(\d+): (.+) \[(.+)\]$'
|
||||||
let l:output = []
|
let l:output = []
|
||||||
|
|
||||||
|
|
||||||
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
||||||
|
let l:code = l:match[4]
|
||||||
|
let l:text = l:match[3]
|
||||||
|
|
||||||
|
" Handle sub-linter errors like the following:
|
||||||
|
"validate.yml:19:9: shellcheck reported issue in this script: SC2086:info:1:15: Double quote to prevent globbing and word splitting [shellcheck]
|
||||||
|
if l:code is# 'shellcheck'
|
||||||
|
let l:shellcheck_match = matchlist(l:text, '\v^.+: (SC\d{4}):.+:\d+:\d+: (.+)$')
|
||||||
|
let l:text = l:shellcheck_match[2]
|
||||||
|
let l:code = 'shellcheck ' . l:shellcheck_match[1]
|
||||||
|
endif
|
||||||
|
|
||||||
let l:item = {
|
let l:item = {
|
||||||
\ 'lnum': l:match[1] + 0,
|
\ 'lnum': l:match[1] + 0,
|
||||||
\ 'col': l:match[2] + 0,
|
\ 'col': l:match[2] + 0,
|
||||||
\ 'text': l:match[3],
|
\ 'text': l:text,
|
||||||
\ 'code': l:match[4],
|
\ 'code': l:code,
|
||||||
\ 'type': 'E',
|
\ 'type': 'E',
|
||||||
\}
|
\}
|
||||||
|
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
Before:
|
Before:
|
||||||
runtime! ale/handlers/actionlint.vim
|
call ale#assert#SetUpLinterTest('yaml', 'actionlint')
|
||||||
|
|
||||||
After:
|
After:
|
||||||
unlet! g:ale_yaml_actionlint_options
|
call ale#assert#TearDownLinterTest()
|
||||||
call ale#linter#Reset()
|
|
||||||
|
|
||||||
Execute(Problems should be parsed correctly for actionlint):
|
Execute(Problems should be parsed correctly for actionlint):
|
||||||
AssertEqual
|
AssertEqual
|
||||||
@ -28,6 +27,21 @@ Execute(Problems should be parsed correctly for actionlint):
|
|||||||
\ 'workflow_call_event.yaml:56:23: property "unknown_input" is not defined in object type {input7: bool; input0: any; input1: any; input2: string; input3: any; input4: any; input5: number; input6: number} [expression]',
|
\ 'workflow_call_event.yaml:56:23: property "unknown_input" is not defined in object type {input7: bool; input0: any; input1: any; input2: string; input3: any; input4: any; input5: number; input6: number} [expression]',
|
||||||
\ ])
|
\ ])
|
||||||
|
|
||||||
|
Execute(Shellcheck issues should be reported at the line they appear):
|
||||||
|
AssertEqual
|
||||||
|
\ [
|
||||||
|
\ {
|
||||||
|
\ 'lnum': 19,
|
||||||
|
\ 'col': 9,
|
||||||
|
\ 'type': 'E',
|
||||||
|
\ 'text': 'Double quote to prevent globbing and word splitting',
|
||||||
|
\ 'code': 'shellcheck SC2086',
|
||||||
|
\ },
|
||||||
|
\ ],
|
||||||
|
\ ale_linters#yaml#actionlint#Handle(bufnr(''), [
|
||||||
|
\ 'validate.yml:19:9: shellcheck reported issue in this script: SC2086:info:1:15: Double quote to prevent globbing and word splitting [shellcheck]'
|
||||||
|
\ ])
|
||||||
|
|
||||||
Execute(Command should always have -no-color and -oneline options):
|
Execute(Command should always have -no-color and -oneline options):
|
||||||
let g:ale_yaml_actionlint_options = ''
|
let g:ale_yaml_actionlint_options = ''
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user