diff options
author | Jon Parise <jon@indelible.org> | 2018-10-31 10:24:03 -0700 |
---|---|---|
committer | Jon Parise <jon@indelible.org> | 2018-10-31 10:32:48 -0700 |
commit | 4bee0f1743d611ca1e6e338d4cb48417f4162f0b (patch) | |
tree | 0d06e8ada638ab2a1c31c9c5e6e29e35685e2932 /test/command_callback | |
parent | 4b841b55869e3ec5b02806f9b2fe962ffdca2750 (diff) | |
download | ale-4bee0f1743d611ca1e6e338d4cb48417f4162f0b.zip |
Add configuration dictionary support to elixir-ls
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.
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_elixir_ls_command_callbacks.vader | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/command_callback/test_elixir_ls_command_callbacks.vader b/test/command_callback/test_elixir_ls_command_callbacks.vader index f79be9b4..5a8d8496 100644 --- a/test/command_callback/test_elixir_ls_command_callbacks.vader +++ b/test/command_callback/test_elixir_ls_command_callbacks.vader @@ -28,3 +28,8 @@ Execute(should set correct LSP values): AssertLSPOptions {} AssertLSPConfig {} AssertLSPProject ale#path#Simplify(g:dir . '/mix_paths/wrapped_project') + +Execute(should accept configuration settings): + AssertLSPConfig {} + let b:ale_elixir_elixir_ls_config = {'elixirLS': {'dialyzerEnabled': v:false}} + AssertLSPConfig {'elixirLS': {'dialyzerEnabled': v:false}} |