summaryrefslogtreecommitdiff
path: root/doc/ale-rust.txt
diff options
context:
space:
mode:
authorMichał Budzyński <budziq@gmail.com>2018-06-04 11:08:49 +0200
committerMichał Budzyński <budziq@gmail.com>2018-06-04 11:08:49 +0200
commite2722071147a5a7feaadf7d574bc64f628402cdc (patch)
tree4a20be56fbc82248a5bcd2a96daa9ece4237f5fb /doc/ale-rust.txt
parent4ec661b305bb168891624eb89466c1a2558fe63b (diff)
downloadale-e2722071147a5a7feaadf7d574bc64f628402cdc.zip
Allow linting rust tests and examples with cargo
Diffstat (limited to 'doc/ale-rust.txt')
-rw-r--r--doc/ale-rust.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/ale-rust.txt b/doc/ale-rust.txt
index dad9ae66..f9afe17d 100644
--- a/doc/ale-rust.txt
+++ b/doc/ale-rust.txt
@@ -59,6 +59,26 @@ 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_check_tests *g:ale_rust_cargo_check_tests*
+ *b:ale_rust_cargo_check_tests*
+ Type: |Number|
+ Default: `0`
+
+ When set to `1`, ALE will set the `--tests` option when `cargo check`
+ is used. This allows for linting of tests which are normally excluded.
+ See |g:ale_rust_cargo_use_check|,
+
+
+g:ale_rust_cargo_check_examples *g:ale_rust_cargo_check_examples*
+ *b:ale_rust_cargo_check_examples*
+ Type: |Number|
+ Default: `0`
+
+ When set to `1`, ALE will set the `--examples` option when `cargo check`
+ is used. This allows for linting of examples which are normally excluded.
+ 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*