diff options
author | Mohammed Chelouti <70812484+motato1@users.noreply.github.com> | 2021-01-11 21:55:17 +0100 |
---|---|---|
committer | Mohammed Chelouti <70812484+motato1@users.noreply.github.com> | 2021-01-22 19:06:53 +0100 |
commit | e16c3b09f74dfa6c096fb50c8cd09b1974e75fb0 (patch) | |
tree | f4a3ca85d49af4c18db42282f9b9b1b134e145a0 /doc/ale-typescript.txt | |
parent | 9b362634f7210657d94870b017e969bdcdda8de0 (diff) | |
download | ale-e16c3b09f74dfa6c096fb50c8cd09b1974e75fb0.zip |
doc: Add documentation for Deno
Diffstat (limited to 'doc/ale-typescript.txt')
-rw-r--r-- | doc/ale-typescript.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/ale-typescript.txt b/doc/ale-typescript.txt index 026d17ce..56735b55 100644 --- a/doc/ale-typescript.txt +++ b/doc/ale-typescript.txt @@ -11,6 +11,39 @@ options for `eslint` too. See: |ale-javascript-eslint|. =============================================================================== +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. + + +=============================================================================== prettier *ale-typescript-prettier* See |ale-javascript-prettier| for information about the available options. |