From 237297b1c89de1a07450f64145f4ca89661f7bb9 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Tue, 30 Sep 2025 02:49:01 -0400 Subject: [PATCH] Delete rustfmt.toml --- rustfmt.toml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 rustfmt.toml diff --git a/rustfmt.toml b/rustfmt.toml deleted file mode 100644 index 159caa9..0000000 --- a/rustfmt.toml +++ /dev/null @@ -1,33 +0,0 @@ -# rustfmt configuration for testscript-rs -# This ensures consistent code formatting across the project -# Only includes stable rustfmt features for compatibility - -# Use the 2021 edition for better formatting -edition = "2021" - -# Line width - commonly used value that works well for most screens -max_width = 100 - -# Hard tabs - set to false for spaces -hard_tabs = false - -# Tab spaces -tab_spaces = 4 - -# Newline style -newline_style = "Unix" - -# Use field init shorthand when possible -use_field_init_shorthand = true - -# Use try shorthand -use_try_shorthand = true - -# Reorder imports -reorder_imports = true - -# Remove nested parens -remove_nested_parens = true - -# Merge derives -merge_derives = true \ No newline at end of file