From 52f98c763b5e9c8517ee76e3232c48a2ffd366d1 Mon Sep 17 00:00:00 2001 From: Kamal Marhubi Date: Mon, 1 Feb 2016 20:29:44 -0500 Subject: [PATCH] config: Disable report_todo by default --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 48b7a06e538..14e58919a87 100644 --- a/src/config.rs +++ b/src/config.rs @@ -326,7 +326,7 @@ create_config! { struct_lit_multiline_style: MultilineStyle, MultilineStyle::PreferSingle, "Multiline style on literal structs"; enum_trailing_comma: bool, true, "Put a trailing comma on enum declarations"; - report_todo: ReportTactic, ReportTactic::Always, + report_todo: ReportTactic, ReportTactic::Never, "Report all, none or unnumbered occurrences of TODO in source file comments"; report_fixme: ReportTactic, ReportTactic::Never, "Report all, none or unnumbered occurrences of FIXME in source file comments";