From 3cd57bde695b290a96b07b7971315622e34219ff Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 18 Apr 2025 12:38:39 -0600 Subject: [PATCH] Fix deprecated option in rustfmt.toml --- rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index 3c4f56848f..fa23c80e2e 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -8,13 +8,13 @@ fn_single_line = false force_explicit_abi = true format_strings = false hard_tabs = false -hide_parse_errors = false imports_granularity = "Crate" imports_indent = "Block" imports_layout = "Mixed" indent_style = "Block" max_width = 100 newline_style = "Unix" +show_parse_errors = true skip_children = false tab_spaces = 4 trailing_comma = "Vertical"