We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d9626 commit 4eef581Copy full SHA for 4eef581
src/tools/linkchecker/main.rs
@@ -121,6 +121,12 @@ fn check(cache: &mut Cache,
121
if file.extension().and_then(|s| s.to_str()) == Some("js") {
122
return None;
123
}
124
+
125
+ // ignore handlebars files as they use {{}} to build links, we only
126
+ // want to test the generated files
127
+ if file.extension().and_then(|s| s.to_str()) == Some("hbs") {
128
+ return None;
129
+ }
130
131
// Unfortunately we're not 100% full of valid links today to we need a few
132
// whitelists to get this past `make check` today.
0 commit comments