From c05c7a186f0e9b4f11a865851dd3cab875bb5e8c Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Mon, 3 Apr 2023 19:18:39 -0400 Subject: [PATCH] chore: Update Editor Configuration For Markdown files: - Enable trimming of trailing whitespace. - Change indentation size from 4 (default) to 2. - Explicitly set indentation style to *space*. --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index b5e63dd1..6abb2823 100644 --- a/.editorconfig +++ b/.editorconfig @@ -28,7 +28,8 @@ indent_style = ignore insert_final_newline = ignore [*.md] -trim_trailing_whitespace = false +indent_style = space +indent_size = 2 [*.{diff,patch}] trim_trailing_whitespace = false