4bee0f1743
This adds generic configuration dictionary support to the elixir-ls linter. This is useful for disabling its built-in Dialyzer support, for example, which can improve startup time. The configuration dictionary is a little verbose. I considered reducing the user configuration to only the nested settings dictionary (and having the linter implementation wrap it in the top-level `elixirLS` dictionary), but leaving it fully configurable simplifies the code and removes any assumptions about current or future ElixirLS behavior.
21 lines
853 B
VimL
21 lines
853 B
VimL
" Author: Jon Parise <jon@indelible.org>
|
|
" Description: ElixirLS integration (https://github.com/JakeBecker/elixir-ls)
|
|
|
|
call ale#Set('elixir_elixir_ls_release', 'elixir-ls')
|
|
call ale#Set('elixir_elixir_ls_config', {})
|
|
|
|
function! ale_linters#elixir#elixir_ls#GetExecutable(buffer) abort
|
|
let l:dir = ale#path#Simplify(ale#Var(a:buffer, 'elixir_elixir_ls_release'))
|
|
let l:cmd = ale#Has('win32') ? '\language_server.bat' : '/language_server.sh'
|
|
|
|
return l:dir . l:cmd
|
|
endfunction
|
|
|
|
call ale#linter#Define('elixir', {
|
|
\ 'name': 'elixir-ls',
|
|
\ 'lsp': 'stdio',
|
|
\ 'executable_callback': 'ale_linters#elixir#elixir_ls#GetExecutable',
|
|
\ 'command_callback': 'ale_linters#elixir#elixir_ls#GetExecutable',
|
|
\ 'project_root_callback': 'ale#handlers#elixir#FindMixProjectRoot',
|
|
\ 'lsp_config_callback': ale#VarFunc('elixir_elixir_ls_config'),
|
|
\})
|