aboutsummaryrefslogtreecommitdiff
path: root/xtask/tests/tidy.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-08-18 17:49:06 +0100
committerGitHub <[email protected]>2020-08-18 17:49:06 +0100
commitf18f9da7d80c669cf14bc2e85e40d883c621262a (patch)
tree3505c0413a0be0e7b99ec797f366a9f49e7ddd9c /xtask/tests/tidy.rs
parentaa2def023e6b0aa8a68f4992423f566d435e55c6 (diff)
parent45f171c43a4f58eff31081af80ac9693c738994f (diff)
Merge #5695
5695: Added completion for unstable features r=matklad a=Fihtangolz Added xtask for downloading list of unstable features from the unstable book and codegen for it. Also included small changes from linter. Co-authored-by: Dmitry <[email protected]> Co-authored-by: Dmitry Opokin <[email protected]>
Diffstat (limited to 'xtask/tests/tidy.rs')
-rw-r--r--xtask/tests/tidy.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs
index ebd42cef7..bec3c630b 100644
--- a/xtask/tests/tidy.rs
+++ b/xtask/tests/tidy.rs
@@ -112,6 +112,8 @@ fn check_todo(path: &Path, text: &str) {
112 // To support generating `todo!()` in assists, we have `expr_todo()` in 112 // To support generating `todo!()` in assists, we have `expr_todo()` in
113 // `ast::make`. 113 // `ast::make`.
114 "ast/make.rs", 114 "ast/make.rs",
115 // The documentation in string literals may contain anything for its own purposes
116 "completion/unstable_feature_descriptor.rs",
115 ]; 117 ];
116 if need_todo.iter().any(|p| path.ends_with(p)) { 118 if need_todo.iter().any(|p| path.ends_with(p)) {
117 return; 119 return;