From 2f5d88cd52e546343aa9d3411b4ff4590f397396 Mon Sep 17 00:00:00 2001 From: MithicSpirit Date: Sun, 22 Dec 2024 16:55:21 -0500 Subject: [PATCH] Consistent indentation The codebase has lots of inconsistent indentation between 1 tab or 4 spaces. Rather than having massive diffs by fixing all that, this sets the editorconfig tab width to 4, so it's at least visually consistent, even on editors that default to 8-wide tabs. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index 9b5abc1c8b..dc59c75638 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,3 +5,4 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = false indent_style = tab +tab_width = 4