From 3daf8e98f68ab336c707551d7f0a52a1502200a7 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 2 Sep 2024 15:55:04 +1000 Subject: [PATCH] rustfmt: Use show_parse_errors `rustfmt` gives warning: Warning: the `hide_parse_errors` option is deprecated. Use `show_parse_errors` instead As suggested use `show_parse_errors` and switch the boolean value. --- rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index 93e688a..c8a2256 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -70,7 +70,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"