We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d412ee7 commit 8972d5fCopy full SHA for 8972d5f
src/bootstrap/builder.rs
@@ -113,11 +113,16 @@ macro_rules! check {
113
})+
114
} else {
115
for path in paths {
116
+ let mut attempted_run = false;
117
$({
118
if <$rule>::should_run($self, path) {
119
+ attempted_run = true;
120
$self.maybe_run::<$rule>(Some(path));
121
}
122
123
+ if !attempted_run {
124
+ eprintln!("Warning: no rules matched {}.", path.display());
125
+ }
126
127
128
}};
0 commit comments