diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-11-14 14:47:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 14:47:19 +0000 |
commit | 7665559d0e6102c9eccf39a119afd9c7a1a0af82 (patch) | |
tree | 537557408cb17220a2b9541c398c9226970fed00 /doc | |
parent | 66a8df081e57b18ab79b71c77d628c56aa4d8344 (diff) | |
parent | ea91209a6685faa0275dc5f8735836ced8b08e4b (diff) | |
download | ale-7665559d0e6102c9eccf39a119afd9c7a1a0af82.zip |
Merge pull request #2660 from YPCrumble/master
Add StandardJS linter for TypeScript
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-supported-languages-and-tools.txt | 1 | ||||
-rw-r--r-- | doc/ale-typescript.txt | 27 | ||||
-rw-r--r-- | doc/ale.txt | 1 |
3 files changed, 29 insertions, 0 deletions
diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt index b7542177..de1be1a2 100644 --- a/doc/ale-supported-languages-and-tools.txt +++ b/doc/ale-supported-languages-and-tools.txt @@ -468,6 +468,7 @@ Notes: * `eslint` * `fecs` * `prettier` + * `standard` * `tslint` * `tsserver` * `typecheck` diff --git a/doc/ale-typescript.txt b/doc/ale-typescript.txt index 7dc59820..2c50d119 100644 --- a/doc/ale-typescript.txt +++ b/doc/ale-typescript.txt @@ -17,6 +17,33 @@ See |ale-javascript-prettier| for information about the available options. =============================================================================== +standard *ale-typescript-standard* + +g:ale_typescript_standard_executable *g:ale_typescript_standard_executable* + *b:ale_typescript_standard_executable* + Type: |String| + Default: `'standard'` + + See |ale-integrations-local-executables| + + +g:ale_typescript_standard_options *g:ale_typescript_standard_options* + *b:ale_typescript_standard_options* + Type: |String| + Default: `''` + + This variable can be set to pass additional options to standard. + + +g:ale_typescript_standard_use_global *g:ale_typescript_standard_use_global* + *b:ale_typescript_standard_use_global* + Type: |Number| + Default: `get(g:, 'ale_use_global_executables', 0)` + + See |ale-integrations-local-executables| + + +=============================================================================== tslint *ale-typescript-tslint* This linter isn't recommended, because TSLint can't be used for checking for diff --git a/doc/ale.txt b/doc/ale.txt index f1c2efbb..515c5f2c 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2524,6 +2524,7 @@ documented in additional help files. typescript..............................|ale-typescript-options| eslint................................|ale-typescript-eslint| prettier..............................|ale-typescript-prettier| + standard..............................|ale-typescript-standard| tslint................................|ale-typescript-tslint| tsserver..............................|ale-typescript-tsserver| vala....................................|ale-vala-options| |