We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91b61a4 commit b311ec0Copy full SHA for b311ec0
src/tools/tidy/src/style.rs
@@ -385,10 +385,12 @@ pub fn check(path: &Path, bad: &mut bool) {
385
}
386
if filename != "style.rs" {
387
if trimmed.contains("TODO") {
388
- err("TODO is deprecated; use FIXME")
+ err(
389
+ "TODO is used for tasks that should be done before merging a PR; If you want to leave a message in the codebase use FIXME",
390
+ )
391
392
if trimmed.contains("//") && trimmed.contains(" XXX") {
- err("XXX is deprecated; use FIXME")
393
+ err("Instead of XXX use FIXME")
394
395
if any_problematic_line {
396
for s in problematic_consts_strings.iter() {
0 commit comments