From 77a5d0e381bde795fb9a5faa292a8ea374b2551d Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Thu, 18 Jul 2024 11:19:09 +0100 Subject: [PATCH] rustfmt: Use show_parse_errors In rust-lang/rustfmt `hide_parse_errors` was changed to `show_parse_errors` Rename the variable and keep the default value `true`. --- rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index ab4989f8f..8b66ef0f8 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -71,7 +71,7 @@ color = "Auto" unstable_features = false disable_all_formatting = false skip_children = false -hide_parse_errors = false +show_parse_errors = true error_on_line_overflow = false error_on_unformatted = false emit_mode = "Files"