summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-javascript.txt56
-rw-r--r--doc/ale.txt1
2 files changed, 42 insertions, 15 deletions
diff --git a/doc/ale-javascript.txt b/doc/ale-javascript.txt
index f311c83a..dd3568c7 100644
--- a/doc/ale-javascript.txt
+++ b/doc/ale-javascript.txt
@@ -30,7 +30,7 @@ g:ale_javascript_eslint_options *g:ale_javascript_eslint_options*
g:ale_javascript_eslint_use_global *g:ale_javascript_eslint_use_global*
- Type: |String|
+ Type: |Number|
Default: `0`
This variable controls whether or not ALE will search for a local path for
@@ -56,7 +56,7 @@ g:ale_javascript_flow_executable *g:ale_javascript_flow_executable*
g:ale_javascript_flow_use_global *g:ale_javascript_flow_use_global*
- Type: |String|
+ Type: |Number|
Default: `0`
This variable controls whether or not ALE will search for a local path for
@@ -84,7 +84,7 @@ g:ale_javascript_jshint_executable *g:ale_javascript_jshint_executable*
g:ale_javascript_jshint_use_global *g:ale_javascript_jshint_use_global*
- Type: |String|
+ Type: |Number|
Default: `0`
This variable controls whether or not ALE will search for a local path for
@@ -93,7 +93,38 @@ g:ale_javascript_jshint_use_global *g:ale_javascript_jshint_use_global*
jshint in node_modules.
-------------------------------------------------------------------------------
+-------------------------------------------------------------------------------
+standard *ale-javascript-standard*
+
+g:ale_javascript_standard_executable *g:ale_javascript_standard_executable*
+
+ Type: |String|
+ Default: `'standard'`
+
+ Same as the eslint option.
+
+ See: |g:ale_javascript_eslint_executable|
+
+
+g:ale_javascript_standard_options *g:ale_javascript_standard_options*
+
+ Type: |String|
+ Default: `''`
+
+ This variable can be set to pass additional options to standard.
+
+
+g:ale_javascript_standard_use_global *g:ale_javascript_standard_use_global*
+
+ Type: |Number|
+ Default: `0`
+
+ Same as the eslint option.
+
+ See: |g:ale_javascript_eslint_use_global|
+
+
+-------------------------------------------------------------------------------
xo *ale-javascript-xo*
g:ale_javascript_xo_executable *g:ale_javascript_xo_executable*
@@ -101,13 +132,9 @@ g:ale_javascript_xo_executable *g:ale_javascript_xo_executable*
Type: |String|
Default: `'xo'`
- ALE will first discover the xo path in an ancestor node_modules
- directory. If no such path exists, this variable will be used instead.
-
- This variable can be set to change the path to xo.
+ Same as the eslint option.
- If you wish to use only a globally installed version of xo, set
- |g:ale_javascript_xo_use_global| to `1`.
+ See: |g:ale_javascript_eslint_executable|
g:ale_javascript_xo_options *g:ale_javascript_xo_options*
@@ -120,13 +147,12 @@ g:ale_javascript_xo_options *g:ale_javascript_xo_options*
g:ale_javascript_xo_use_global *g:ale_javascript_xo_use_global*
- Type: |String|
+ Type: |Number|
Default: `0`
- This variable controls whether or not ALE will search for a local path for
- xo first. If this variable is set to `1`, then ALE will always use the
- global version of xo, in preference to locally installed versions of
- xo in node_modules.
+ Same as the eslint option.
+
+ See: |g:ale_javascript_eslint_use_global|
-------------------------------------------------------------------------------
diff --git a/doc/ale.txt b/doc/ale.txt
index e6b312cb..af8e39d3 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -38,6 +38,7 @@ CONTENTS *ale-contents*
eslint..............................|ale-javascript-eslint|
flow................................|ale-javascript-flow|
jshint..............................|ale-javascript-jshint|
+ standard............................|ale-javascript-standard|
xo..................................|ale-javascript-xo|
lua...................................|ale-lua-options|
luacheck............................|ale-lua-luacheck|