mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/vue/vls.vim

23 lines
762 B
VimL
Raw Normal View History

2018-07-19 08:52:53 -04:00
" Author: Alexander Olofsson <alexander.olofsson@liu.se>
" Description: Vue vls Language Server integration for ALE
call ale#Set('vue_vls_executable', 'vls')
call ale#Set('vue_vls_use_global', get(g:, 'ale_use_global_executables', 0))
function! ale_linters#vue#vls#GetProjectRoot(buffer) abort
let l:package_path = ale#path#FindNearestFile(a:buffer, 'package.json')
return !empty(l:package_path) ? fnamemodify(l:package_path, ':h') : ''
endfunction
call ale#linter#Define('vue', {
\ 'name': 'vls',
\ 'lsp': 'stdio',
2021-05-31 16:30:26 -04:00
\ 'executable': {b -> ale#path#FindExecutable(b, 'vue_vls', [
2018-08-25 12:13:42 -04:00
\ 'node_modules/.bin/vls',
2019-03-08 06:04:56 -05:00
\ ])},
2018-08-25 12:13:42 -04:00
\ 'command': '%e --stdio',
2018-07-19 08:52:53 -04:00
\ 'language': 'vue',
2019-03-08 06:04:56 -05:00
\ 'project_root': function('ale_linters#vue#vls#GetProjectRoot'),
2018-07-19 08:52:53 -04:00
\})