2018-07-06 18:24:19 +00:00
|
|
|
" Author: t_t <jamestthompson3@gmail.com>
|
|
|
|
" Description: Integrate ALE with flow-language-server.
|
|
|
|
|
|
|
|
call ale#Set('javascript_flow_ls_executable', 'flow')
|
|
|
|
call ale#Set('javascript_flow_ls_use_global',
|
|
|
|
\ get(g:, 'ale_use_global_executables', 0)
|
|
|
|
\)
|
|
|
|
|
|
|
|
function! ale_linters#javascript#flow_ls#FindProjectRoot(buffer) abort
|
|
|
|
let l:flow_config = ale#path#FindNearestFile(a:buffer, '.flowconfig')
|
|
|
|
|
|
|
|
if !empty(l:flow_config)
|
|
|
|
return fnamemodify(l:flow_config, ':h')
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('javascript', {
|
|
|
|
\ 'name': 'flow-language-server',
|
|
|
|
\ 'lsp': 'stdio',
|
2021-05-26 21:43:30 +00:00
|
|
|
\ 'executable': {b -> ale#path#FindExecutable(b, 'javascript_flow_ls', [
|
2018-08-02 22:44:12 +00:00
|
|
|
\ 'node_modules/.bin/flow',
|
2019-02-22 18:05:04 +00:00
|
|
|
\ ])},
|
2018-08-02 22:44:12 +00:00
|
|
|
\ 'command': '%e lsp --from ale-lsp',
|
2019-02-22 18:05:04 +00:00
|
|
|
\ 'project_root': function('ale_linters#javascript#flow_ls#FindProjectRoot'),
|
2018-07-06 18:24:19 +00:00
|
|
|
\ 'language': 'javascript',
|
|
|
|
\})
|