From 8de607322e802004be28b5e733dc51d0c9319cdc Mon Sep 17 00:00:00 2001 From: Greg Pfeil Date: Wed, 15 Feb 2023 08:57:11 -0700 Subject: [PATCH] Correct EditorConfig for Makefiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was deciding to convert tabs to spaces on save, which isn’t great. --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 71ae7b106..2ffda198d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,3 +12,6 @@ indent_size = 4 indent_style = space insert_final_newline = true trim_trailing_whitespace = true + +[{Makefile*, *.mk}] +indent_style = tab