2022-08-08 09:45:34 -04:00
|
|
|
" Author: Arnold Chand <creativenull@outlook.com>
|
|
|
|
" Description: Volar Language Server integration for ALE adopted from
|
|
|
|
" nvim-lspconfig and volar/packages/shared/src/types.ts
|
|
|
|
|
2022-09-20 04:08:31 -04:00
|
|
|
call ale#Set('vue_volar_executable', 'vue-language-server')
|
2023-08-20 10:33:32 -04:00
|
|
|
call ale#Set('vue_volar_use_global', 1)
|
2022-08-08 09:45:34 -04:00
|
|
|
call ale#Set('vue_volar_init_options', {
|
2023-08-20 10:33:32 -04:00
|
|
|
\ 'typescript': { 'tsdk': '' },
|
2022-08-08 09:45:34 -04:00
|
|
|
\})
|
|
|
|
|
|
|
|
function! ale_linters#vue#volar#GetProjectRoot(buffer) abort
|
2023-08-20 10:33:32 -04:00
|
|
|
let l:project_roots = [
|
|
|
|
\ 'package.json',
|
|
|
|
\ 'vite.config.js',
|
|
|
|
\ 'vite.config.mjs',
|
|
|
|
\ 'vite.config.cjs',
|
|
|
|
\ 'vite.config.ts',
|
|
|
|
\ '.git',
|
|
|
|
\ bufname(a:buffer)
|
|
|
|
\]
|
2022-08-08 09:45:34 -04:00
|
|
|
|
|
|
|
for l:project_root in l:project_roots
|
|
|
|
let l:nearest_filepath = ale#path#FindNearestFile(a:buffer, l:project_root)
|
|
|
|
|
|
|
|
if !empty(l:nearest_filepath)
|
|
|
|
return fnamemodify(l:nearest_filepath, ':h')
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#vue#volar#GetInitializationOptions(buffer) abort
|
2023-08-20 10:33:32 -04:00
|
|
|
let l:tsserver_path = ale#path#FindNearestDirectory(a:buffer, 'node_modules/typescript/lib')
|
|
|
|
|
|
|
|
if l:tsserver_path is# ''
|
|
|
|
" no-custom-checks
|
|
|
|
echohl WarningMsg
|
|
|
|
" no-custom-checks
|
|
|
|
echom '[volar] Must have typescript installed in project, please install via `npm install -D typescript`.'
|
|
|
|
" no-custom-checks
|
|
|
|
echohl None
|
|
|
|
endif
|
|
|
|
|
2022-08-08 09:45:34 -04:00
|
|
|
let l:init_options = ale#Var(a:buffer, 'vue_volar_init_options')
|
2023-08-20 10:33:32 -04:00
|
|
|
let l:init_options.typescript.tsdk = l:tsserver_path
|
2022-08-08 09:45:34 -04:00
|
|
|
|
|
|
|
return l:init_options
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('vue', {
|
|
|
|
\ 'name': 'volar',
|
|
|
|
\ 'language': 'vue',
|
|
|
|
\ 'lsp': 'stdio',
|
2022-09-20 04:08:31 -04:00
|
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'vue_volar', ['node_modules/.bin/vue-language-server'])},
|
2022-08-08 09:45:34 -04:00
|
|
|
\ 'command': '%e --stdio',
|
|
|
|
\ 'project_root': function('ale_linters#vue#volar#GetProjectRoot'),
|
|
|
|
\ 'initialization_options': function('ale_linters#vue#volar#GetInitializationOptions'),
|
|
|
|
\})
|