diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-01-23 11:04:52 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 11:04:52 +0900 |
commit | c37473630189a597f20016d11ba3ba1ae0bd6923 (patch) | |
tree | d91b397ee7c6e2131818bb2f25757d61dbb79ca8 /doc | |
parent | 5200e6c73460232de7c8ea7659cea2429e02e2a0 (diff) | |
parent | fe666a7a6c38a7026b1969e6be00eb5d380f8b13 (diff) | |
download | ale-c37473630189a597f20016d11ba3ba1ae0bd6923.zip |
Merge pull request #3533 from motato1/master
Deno support for LSP and fixer
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-supported-languages-and-tools.txt | 1 | ||||
-rw-r--r-- | doc/ale-typescript.txt | 33 | ||||
-rw-r--r-- | doc/ale.txt | 1 |
3 files changed, 35 insertions, 0 deletions
diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt index c3ab3690..6744e30e 100644 --- a/doc/ale-supported-languages-and-tools.txt +++ b/doc/ale-supported-languages-and-tools.txt @@ -498,6 +498,7 @@ Notes: * Thrift * `thrift` * TypeScript + * `deno` * `eslint` * `fecs` * `prettier` diff --git a/doc/ale-typescript.txt b/doc/ale-typescript.txt index 026d17ce..a2446c2c 100644 --- a/doc/ale-typescript.txt +++ b/doc/ale-typescript.txt @@ -3,6 +3,39 @@ ALE TypeScript Integration *ale-typescript-options* =============================================================================== +deno *ale-typescript-deno* + +Starting from version 1.6.0, Deno comes with its own language server. Earlier +versions are not supported. + +g:ale_deno_executable *g:ale_deno_executable* + *b:ale_deno_executable* + Type: |String| + Default: `'deno'` + + +g:ale_deno_lsp_project_root *g:ale_deno_lsp_project_root* + *b:ale_deno_lsp_project_root* + Type: |String| + Default: `''` + + If this variable is left unset, ALE will try to find the project root by + executing the following steps in the given order: + + 1. Find an ancestor directory containing a tsconfig.json. + 2. Find an ancestory irectory containing a .git folder. + 3. Use the directory of the current buffer (if the buffer was opened from + a file). + +g:ale_deno_unstable *g:ale_deno_unstable* + *b:ale_deno_unstable* + Type: |Number| + Default: `0` + + Enable or disable unstable Deno features and APIs. + + +=============================================================================== eslint *ale-typescript-eslint* Because of how TypeScript compiles code to JavaScript and how interrelated diff --git a/doc/ale.txt b/doc/ale.txt index d5ea82ca..97fb0786 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2994,6 +2994,7 @@ documented in additional help files. thrift..................................|ale-thrift-options| thrift................................|ale-thrift-thrift| typescript..............................|ale-typescript-options| + deno..................................|ale-typescript-deno| eslint................................|ale-typescript-eslint| prettier..............................|ale-typescript-prettier| standard..............................|ale-typescript-standard| |