From b095cc9323d328c8a379fc7ee6a153c30fc15cab Mon Sep 17 00:00:00 2001 From: James Peach Date: Wed, 16 Aug 2023 11:50:33 +1000 Subject: [PATCH] Fix editor config for makefiles. Add Makefile.inc and *.mk patterns to the editor config and ensure that they follow standard Make rules - tabs with width 8. Signed-off-by: James Peach --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index b1fb74ba1a9..2183af64b5e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -43,9 +43,10 @@ charset = utf-8 [*.sh] indent_size = 4 # Makefile's -[*.am] +[{*.am,*.mk,Makefile.inc}] trim_trailing_whitespace = false indent_style = tab +indent_size = 8 [*.rst] max_line_length = 80 indent_size = 3