1
0
Fork 0
mirror of synced 2024-05-24 19:15:22 -04:00
ultimate-vim/sources_non_forked/ale/ale_linters/json/spectral.vim

19 lines
685 B
VimL
Executable file

" Author: t2h5 <https://github.com/t2h5>
" Description: Integration of Stoplight Spectral CLI with ALE.
call ale#Set('json_spectral_executable', 'spectral')
call ale#Set('json_spectral_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#linter#Define('json', {
\ 'name': 'spectral',
<<<<<<< HEAD
\ 'executable': {b -> ale#node#FindExecutable(b, 'json_spectral', [
=======
\ 'executable': {b -> ale#path#FindExecutable(b, 'json_spectral', [
>>>>>>> 1cca3b1df2973096bb9526a0d79c7b93c04e66b3
\ 'node_modules/.bin/spectral',
\ ])},
\ 'command': '%e lint --ignore-unknown-format -q -f text %t',
\ 'callback': 'ale#handlers#spectral#HandleSpectralOutput'
\})