7eae781291
ElixirLS (https://github.com/JakeBecker/elixir-ls) is an LSP server for Elixir. It's distributed as a release package that can be downloaded from https://github.com/JakeBecker/elixir-ls/releases or built locally. The easiest way to start it is via Unix- and Win32-specific helper scripts, so that's the basis of this command integration. Alternatively, we could implement the contents of those platform-specific scripts in the linter's command callback in a language-neutral way, but there isn't any benefit to doing that aside from eliminating the platform check, and that could prove to be too tight of a coupling going forward.
58 lines
2.2 KiB
Plaintext
58 lines
2.2 KiB
Plaintext
===============================================================================
|
|
ALE Elixir Integration *ale-elixir-options*
|
|
|
|
|
|
===============================================================================
|
|
mix *ale-elixir-mix*
|
|
|
|
g:ale_elixir_mix_options *g:ale_elixir_mix_options*
|
|
*b:ale_elixir_mix_options*
|
|
Type: |String|
|
|
Default: `'mix'`
|
|
|
|
|
|
This variable can be changed to specify the mix executable.
|
|
|
|
===============================================================================
|
|
mix_format *ale-elixir-mix-format*
|
|
|
|
g:ale_elixir_mix_format_options *g:ale_elixir_mix_format_options*
|
|
*b:ale_elixir_mix_format_options*
|
|
Type: |String|
|
|
Default: `''`
|
|
|
|
|
|
This variable can be changed to specify the mix options passed to the
|
|
mix_format fixer
|
|
|
|
===============================================================================
|
|
dialyxir *ale-elixir-dialyxir*
|
|
|
|
Dialyzer, a DIscrepancy AnaLYZer for ERlang programs.
|
|
http://erlang.org/doc/man/dialyzer.html
|
|
|
|
It can be used with elixir through dialyxir
|
|
https://github.com/jeremyjh/dialyxir
|
|
|
|
Options for dialyzer are not configurable by ale, but they are instead
|
|
configured on your project's `mix.exs`.
|
|
|
|
See https://github.com/jeremyjh/dialyxir#with-explaining-stuff for more
|
|
information.
|
|
|
|
===============================================================================
|
|
elixir-ls *ale-elixir-elixir-ls*
|
|
|
|
Elixir Language Server (https://github.com/JakeBecker/elixir-ls)
|
|
|
|
g:ale_elixir_elixir_ls_release *g:ale_elixir_elixir_ls_release*
|
|
*b:ale_elixir_elixir_ls_release*
|
|
Type: |String|
|
|
Default: `'elixir-ls'`
|
|
|
|
Location of the elixir-ls release directory. This directory must contain
|
|
the language server scripts (language_server.sh and language_server.bat).
|
|
|
|
===============================================================================
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|