From 87dbb6dcbcb631b6f57b8d258b6d2be4408b6c95 Mon Sep 17 00:00:00 2001 From: Josiah Glosson Date: Thu, 21 Aug 2025 01:03:56 -0700 Subject: [PATCH] Mark .editorconfig to use spaces for Rust code as the formatter does (#4235) --- .editorconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 5cf88b9be..0216e875f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,13 +13,13 @@ max_line_length = 100 indent_size = 2 max_line_length = off -[*.toml] -indent_size = 2 - -[*.json] +[*.{toml,json}] indent_size = 2 # YAML requires space indentation by spec [*.{yml,yaml}] indent_size = 2 indent_style = space + +[*.rs] +indent_style = space