e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
14 lines
545 B
VimL
14 lines
545 B
VimL
" Author: t2h5 <https://github.com/t2h5>
|
|
" Description: Integration of Stoplight Spectral CLI with ALE.
|
|
|
|
call ale#Set('yaml_spectral_executable', 'spectral')
|
|
call ale#Set('yaml_spectral_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
|
|
call ale#linter#Define('yaml', {
|
|
\ 'name': 'spectral',
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'yaml_spectral', [
|
|
\ 'node_modules/.bin/spectral',
|
|
\ ])},
|
|
\ 'command': '%e lint --ignore-unknown-format -q -f text %t',
|
|
\ 'callback': 'ale#handlers#spectral#HandleSpectralOutput'
|
|
\})
|