Fix #2084 - Disable mix by default, as it causes too many problems

This commit is contained in:
w0rp 2018-11-19 20:14:22 +00:00
parent 1c89495d77
commit e74d43fb25
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
3 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,7 @@ let s:default_ale_linter_aliases = {
" NOTE: Update the g:ale_linters documentation when modifying this. " NOTE: Update the g:ale_linters documentation when modifying this.
let s:default_ale_linters = { let s:default_ale_linters = {
\ 'csh': ['shell'], \ 'csh': ['shell'],
\ 'elixir': ['credo', 'dialyxir', 'dogma', 'elixir-ls'],
\ 'go': ['gofmt', 'golint', 'go vet'], \ 'go': ['gofmt', 'golint', 'go vet'],
\ 'hack': ['hack'], \ 'hack': ['hack'],
\ 'help': [], \ 'help': [],

View File

@ -5,6 +5,11 @@ ALE Elixir Integration *ale-elixir-options*
=============================================================================== ===============================================================================
mix *ale-elixir-mix* mix *ale-elixir-mix*
The `mix` linter is disabled by default, as it can bee too expensive to run.
See `:help g:ale_linters`
g:ale_elixir_mix_options *g:ale_elixir_mix_options* g:ale_elixir_mix_options *g:ale_elixir_mix_options*
*b:ale_elixir_mix_options* *b:ale_elixir_mix_options*
Type: |String| Type: |String|

View File

@ -1422,6 +1422,7 @@ g:ale_linters *g:ale_linters*
{ {
\ 'csh': ['shell'], \ 'csh': ['shell'],
\ 'elixir': ['credo', 'dialyxir', 'dogma', 'elixir-ls'],
\ 'go': ['gofmt', 'golint', 'go vet'], \ 'go': ['gofmt', 'golint', 'go vet'],
\ 'hack': ['hack'], \ 'hack': ['hack'],
\ 'help': [], \ 'help': [],