diff options
Diffstat (limited to 'xtask/tests/tidy.rs')
-rw-r--r-- | xtask/tests/tidy.rs | 4 |
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 | |||
82 | MIT/Apache-2.0 AND BSD-2-Clause | 82 | MIT/Apache-2.0 AND BSD-2-Clause |
83 | Unlicense OR MIT | 83 | Unlicense OR MIT |
84 | Unlicense/MIT | 84 | Unlicense/MIT |
85 | Zlib | 85 | Zlib 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; |