2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
ALE Elixir Integration *ale-elixir-options*
|
|
|
|
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
mix *ale-elixir-mix*
|
|
|
|
|
2018-12-17 06:28:27 -05:00
|
|
|
|
|
|
|
The `mix` linter is disabled by default, as it can bee too expensive to run.
|
|
|
|
See `:help g:ale_linters`
|
|
|
|
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
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.
|
|
|
|
|
2018-11-01 06:03:42 -04:00
|
|
|
===============================================================================
|
|
|
|
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).
|
|
|
|
|
2018-12-17 06:28:27 -05:00
|
|
|
g:ale_elixir_elixir_ls_config *g:ale_elixir_elixir_ls_config*
|
|
|
|
*b:ale_elixir_elixir_ls_config*
|
|
|
|
Type: |Dictionary|
|
|
|
|
Default: `{}`
|
|
|
|
|
|
|
|
Dictionary containing configuration settings that will be passed to the
|
|
|
|
language server. For example, to disable Dialyzer: >
|
|
|
|
{
|
|
|
|
\ 'elixirLS': {
|
|
|
|
\ 'dialyzerEnabled': v:false,
|
|
|
|
\ },
|
|
|
|
\ }
|
|
|
|
<
|
|
|
|
Consult the ElixirLS documentation for more information about settings.
|
2019-03-27 11:08:56 -04:00
|
|
|
===============================================================================
|
|
|
|
credo *ale-elixir-credo*
|
|
|
|
|
|
|
|
Credo (https://github.com/rrrene/credo)
|
|
|
|
|
|
|
|
g:ale_elixir_credo_strict *g:ale_elixir_credo_strict*
|
|
|
|
|
|
|
|
Type: Integer
|
|
|
|
Default: 0
|
|
|
|
|
|
|
|
Tells credo to run in strict mode or suggest mode. Set variable to 1 to
|
|
|
|
enable --strict mode.
|
2018-12-17 06:28:27 -05:00
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
===============================================================================
|
|
|
|
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|