diff options
author | tatsuya <t2h5k0@gmail.com> | 2021-01-06 13:22:08 +0900 |
---|---|---|
committer | tatsuya <t2h5k0@gmail.com> | 2021-01-23 11:56:10 +0900 |
commit | 997dd7f8fe45030e65b418c5f46e20d808b1c5eb (patch) | |
tree | e096a71b750d6a6826410d983287766237c4f0c2 /autoload | |
parent | 5a47d878fbb837af4c89ab545f473f8526bd4d64 (diff) | |
download | ale-997dd7f8fe45030e65b418c5f46e20d808b1c5eb.zip |
add spectral handler
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers/spectral.vim | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/autoload/ale/handlers/spectral.vim b/autoload/ale/handlers/spectral.vim new file mode 100644 index 00000000..1eb4a5de --- /dev/null +++ b/autoload/ale/handlers/spectral.vim @@ -0,0 +1,31 @@ +" Author: t2h5 <https://github.com/t2h5> +" Description: Integration of Stoplight Spectral CLI with ALE. + +function! ale#handlers#spectral#HandleSpectralOutput(buffer, lines) abort + " Matches patterns like the following: + " openapi.yml:1:1 error oas3-schema "Object should have required property `info`." + " openapi.yml:1:1 warning oas3-api-servers "OpenAPI `servers` must be present and non-empty array." + let l:pattern = '\v^.*:(\d+):(\d+) (error|warning) (.*)$' + let l:output = [] + + for l:match in ale#util#GetMatches(a:lines, l:pattern) + let l:obj = { + \ 'lnum': l:match[1] + 0, + \ 'col': l:match[2] + 0, + \ 'type': l:match[3] is# 'error' ? 'E' : 'W', + \ 'text': l:match[4], + \} + + let l:code_match = matchlist(l:obj.text, '\v^(.+) "(.+)"$') + + if !empty(l:code_match) + let l:obj.code = l:code_match[1] + let l:obj.text = l:code_match[2] + endif + + call add(l:output, l:obj) + endfor + + return l:output +endfunction + |