summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/flow_ls.vim
blob: 20fc221783d38c0cf5d35e78336f618f822fd220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
" 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#GetExecutable(buffer) abort
    return ale#node#FindExecutable(a:buffer, 'javascript_flow_ls', [
    \   'node_modules/.bin/flow',
    \])
endfunction

function! ale_linters#javascript#flow_ls#GetCommand(buffer) abort
    let l:executable = ale_linters#javascript#flow_ls#GetExecutable(a:buffer)

    return ale#Escape(l:executable) . ' lsp --from ale-lsp'
endfunction

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',
\   'executable_callback': 'ale_linters#javascript#flow_ls#GetExecutable',
\   'command_callback': 'ale_linters#javascript#flow_ls#GetCommand',
\   'project_root_callback': 'ale_linters#javascript#flow_ls#FindProjectRoot',
\   'language': 'javascript',
\})