summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-html.txt15
-rw-r--r--doc/ale-python.txt22
-rw-r--r--doc/ale-rust.txt30
3 files changed, 61 insertions, 6 deletions
diff --git a/doc/ale-html.txt b/doc/ale-html.txt
index 14e705e0..c5d5afa5 100644
--- a/doc/ale-html.txt
+++ b/doc/ale-html.txt
@@ -32,6 +32,21 @@ g:ale_html_htmlhint_use_global *g:ale_html_htmlhint_use_global*
===============================================================================
tidy *ale-html-tidy*
+`tidy` is a console application which corrects and cleans up HTML and XML
+documents by fixing markup errors and upgrading legacy code to modern
+standards.
+
+Note:
+`/usr/bin/tidy` on macOS (installed by default) is too old. It was released
+on 31 Oct 2006. It does not consider modern HTML specs (HTML5) and shows
+outdated warnings. So |ale| ignores `/usr/bin/tidy` on macOS.
+
+To use `tidy` on macOS, please install the latest version with Homebrew:
+>
+ $ brew install tidy-html5
+<
+`/usr/local/bin/tidy` is installed.
+
g:ale_html_tidy_executable *g:ale_html_tidy_executable*
*b:ale_html_tidy_executable*
Type: |String|
diff --git a/doc/ale-python.txt b/doc/ale-python.txt
index 742a8544..4d55e751 100644
--- a/doc/ale-python.txt
+++ b/doc/ale-python.txt
@@ -104,6 +104,16 @@ g:ale_python_mypy_executable *g:ale_python_mypy_executable*
See |ale-integrations-local-executables|
+g:ale_python_mypy_ignore_invalid_syntax
+ *g:ale_python_mypy_ignore_invalid_syntax*
+ *b:ale_python_mypy_ignore_invalid_syntax*
+ Type: |Number|
+ Default: `0`
+
+ When set to `1`, syntax error messages for mypy will be ignored. This option
+ can be used when running other Python linters which check for syntax errors,
+ as mypy can take a while to finish executing.
+
g:ale_python_mypy_options *g:ale_python_mypy_options*
*b:ale_python_mypy_options*
@@ -125,16 +135,16 @@ g:ale_python_mypy_use_global *g:ale_python_mypy_use_global*
===============================================================================
prospector *ale-python-prospector*
-g:ale_python_prospector_executable *g:ale_python_prospector_executable*
- *b:ale_python_prospector_executable*
+g:ale_python_prospector_executable *g:ale_python_prospector_executable*
+ *b:ale_python_prospector_executable*
Type: |String|
Default: `'prospector'`
See |ale-integrations-local-executables|
-g:ale_python_prospector_options *g:ale_python_prospector_options*
- *b:ale_python_prospector_options*
+g:ale_python_prospector_options *g:ale_python_prospector_options*
+ *b:ale_python_prospector_options*
Type: |String|
Default: `''`
@@ -154,8 +164,8 @@ g:ale_python_prospector_options *g:ale_python_prospector_option
`python3 -m pip install --user prospector`).
-g:ale_python_prospector_use_global *g:ale_python_prospector_use_global*
- *b:ale_python_prospector_use_global*
+g:ale_python_prospector_use_global *g:ale_python_prospector_use_global*
+ *b:ale_python_prospector_use_global*
Type: |Number|
Default: `0`
diff --git a/doc/ale-rust.txt b/doc/ale-rust.txt
index 535f21d6..dad9ae66 100644
--- a/doc/ale-rust.txt
+++ b/doc/ale-rust.txt
@@ -59,6 +59,36 @@ g:ale_rust_cargo_check_all_targets *g:ale_rust_cargo_check_all_targets*
is used. See |g:ale_rust_cargo_use_check|,
+g:ale_rust_cargo_default_feature_behavior
+ *g:ale_rust_cargo_default_feature_behavior*
+ *b:ale_rust_cargo_default_feature_behavior*
+ Type: |String|
+ Default: `default`
+
+ When set to `none`, ALE will set the `--no-default-features` option when
+ invoking `cargo`. Only the features specified in
+ |g:ale_rust_cargo_include_features| will be included when performing the
+ lint check.
+
+ When set to `default`, ALE will instruct `cargo` to build all default
+ features specified in the project's `Cargo.toml` file, in addition to
+ including any additional features defined in
+ |g:ale_rust_cargo_include_features|.
+
+ When set to `all`, ALE will set the `--all-features` option when
+ invoking `cargo`, which will include all features defined in the project's
+ `Cargo.toml` file when performing the lint check.
+
+
+g:ale_rust_cargo_include_features *g:ale_rust_cargo_include_features*
+ *b:ale_rust_cargo_include_features*
+ Type: |String|
+ Default: `''`
+
+ When defined, ALE will set the `--features` option when invoking `cargo` to
+ perform the lint check. See |g:ale_rust_cargo_default_feature_behavior|.
+
+
===============================================================================
rls *ale-rust-rls*