2022-08-08 09:45:34 -04:00
|
|
|
" Author: Dalius Dobravolskas <dalius.dobravolskas@gmail.com>
|
|
|
|
" Description: VSCode json language server
|
|
|
|
|
2024-01-07 10:14:20 -05:00
|
|
|
call ale#Set('json_vscodejson_executable', '<auto>')
|
|
|
|
|
|
|
|
function! ale_linters#json#vscodejson#GetExecutable(buffer) abort
|
|
|
|
let l:executable = ale#Var(a:buffer, 'json_vscodejson_executable')
|
|
|
|
|
|
|
|
if l:executable is# '<auto>'
|
|
|
|
if ale#engine#IsExecutable(a:buffer, 'vscode-json-languageserver')
|
|
|
|
let l:executable = 'vscode-json-languageserver'
|
|
|
|
else
|
|
|
|
let l:executable = 'vscode-json-language-server'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return l:executable
|
|
|
|
endfunction
|
|
|
|
|
2022-08-08 09:45:34 -04:00
|
|
|
function! ale_linters#json#vscodejson#GetProjectRoot(buffer) abort
|
|
|
|
let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git')
|
|
|
|
|
|
|
|
return !empty(l:git_path) ? fnamemodify(l:git_path, ':h:h') : ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('json', {
|
|
|
|
\ 'name': 'vscodejson',
|
|
|
|
\ 'lsp': 'stdio',
|
2024-01-07 10:14:20 -05:00
|
|
|
\ 'executable': function('ale_linters#json#vscodejson#GetExecutable'),
|
2022-08-08 09:45:34 -04:00
|
|
|
\ 'command': '%e --stdio',
|
|
|
|
\ 'project_root': function('ale_linters#json#vscodejson#GetProjectRoot'),
|
|
|
|
\})
|