#2397 - disable elixir-ls by default, which can be CPU hungry
This commit is contained in:
parent
a92627e1e1
commit
442d672d8a
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +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'],
|
\ 'elixir': ['credo', 'dialyxir', 'dogma'],
|
||||||
\ 'go': ['gofmt', 'golint', 'go vet'],
|
\ 'go': ['gofmt', 'golint', 'go vet'],
|
||||||
\ 'hack': ['hack'],
|
\ 'hack': ['hack'],
|
||||||
\ 'help': [],
|
\ 'help': [],
|
||||||
|
|
|
@ -1342,7 +1342,7 @@ g:ale_linters *g:ale_linters*
|
||||||
|
|
||||||
{
|
{
|
||||||
\ 'csh': ['shell'],
|
\ 'csh': ['shell'],
|
||||||
\ 'elixir': ['credo', 'dialyxir', 'dogma', 'elixir-ls'],
|
\ 'elixir': ['credo', 'dialyxir', 'dogma'],
|
||||||
\ 'go': ['gofmt', 'golint', 'go vet'],
|
\ 'go': ['gofmt', 'golint', 'go vet'],
|
||||||
\ 'hack': ['hack'],
|
\ 'hack': ['hack'],
|
||||||
\ 'help': [],
|
\ 'help': [],
|
||||||
|
|
|
@ -123,7 +123,7 @@ formatting.
|
||||||
* [credo](https://github.com/rrrene/credo)
|
* [credo](https://github.com/rrrene/credo)
|
||||||
* [dialyxir](https://github.com/jeremyjh/dialyxir)
|
* [dialyxir](https://github.com/jeremyjh/dialyxir)
|
||||||
* [dogma](https://github.com/lpil/dogma)
|
* [dogma](https://github.com/lpil/dogma)
|
||||||
* [elixir-ls](https://github.com/JakeBecker/elixir-ls)
|
* [elixir-ls](https://github.com/JakeBecker/elixir-ls) :warning:
|
||||||
* [mix](https://hexdocs.pm/mix/Mix.html) :warning: :floppy_disk:
|
* [mix](https://hexdocs.pm/mix/Mix.html) :warning: :floppy_disk:
|
||||||
* Elm
|
* Elm
|
||||||
* [elm-format](https://github.com/avh4/elm-format)
|
* [elm-format](https://github.com/avh4/elm-format)
|
||||||
|
|
Reference in a new issue