diff options
author | Clément DOUIN <clement.douin@gmail.com> | 2017-09-09 22:30:20 +0200 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-09-09 21:30:20 +0100 |
commit | f3da8f45c15fdd335593be060c0c6aaea751e81d (patch) | |
tree | 4c7f3161dfb816ae29e5befc9de5bd869e67aadd /doc | |
parent | b3a9a0e3e8264cf8ce7c4d3780b06ab62d0db287 (diff) | |
download | ale-f3da8f45c15fdd335593be060c0c6aaea751e81d.zip |
Add elm-format as a new fixer (#916)
* Add elm-format as a new fixer
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-elm.txt | 32 | ||||
-rw-r--r-- | doc/ale.txt | 2 |
2 files changed, 33 insertions, 1 deletions
diff --git a/doc/ale-elm.txt b/doc/ale-elm.txt new file mode 100644 index 00000000..9331575b --- /dev/null +++ b/doc/ale-elm.txt @@ -0,0 +1,32 @@ +=============================================================================== +ALE Elm Integration *ale-elm-options* + + +=============================================================================== +elm-format *ale-elm-format* + +g:ale_elm_format_executable *g:ale_elm_format_executable* + *b:ale_elm_format_executable* + Type: |String| + Default: `'elm-format'` + + See |ale-integrations-local-executables| + + +g:ale_elm_format_use_global *g:ale_elm_format_use_global* + *b:ale_elm_format_use_global* + Type: |Number| + Default: `0` + + See |ale-integrations-local-executables| + + +g:ale_elm_format_options *g:ale_elm_format_options* + *b:ale_elm_format_options* + Type: |String| + Default: `'--yes'` + + This variable can be set to pass additional options to elm-format. + +=============================================================================== + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale.txt b/doc/ale.txt index 319c109e..ff02f7a6 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -217,7 +217,7 @@ Notes: * Dart: `dartanalyzer` * Dockerfile: `hadolint` * Elixir: `credo`, `dogma`!! -* Elm: `elm-make` +* Elm: `elm-make, elm-format` * Erb: `erb`, `erubis` * Erlang: `erlc`, `SyntaxErl` * Fortran: `gcc` |