aboutsummaryrefslogtreecommitdiff
path: root/xtask/tests/tidy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/tests/tidy.rs')
-rw-r--r--xtask/tests/tidy.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs
index 76895aeca..4fdff62ee 100644
--- a/xtask/tests/tidy.rs
+++ b/xtask/tests/tidy.rs
@@ -82,7 +82,7 @@ MIT/Apache-2.0
82MIT/Apache-2.0 AND BSD-2-Clause 82MIT/Apache-2.0 AND BSD-2-Clause
83Unlicense OR MIT 83Unlicense OR MIT
84Unlicense/MIT 84Unlicense/MIT
85Zlib 85Zlib OR Apache-2.0 OR MIT
86" 86"
87 .lines() 87 .lines()
88 .filter(|it| !it.is_empty()) 88 .filter(|it| !it.is_empty())
@@ -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/generated_features.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;