From e98f9b9c4a6363c2e2bc0d0af1d4c6532c2b770a Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Thu, 20 Jul 2023 17:25:58 +0200 Subject: [PATCH] .editorconfig: provide more editor settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set the maximum line length for commit messages to 72 characters, and the indentation style for Makefiles to TAB. Reviewed-by: Jan Höppner Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.editorconfig b/.editorconfig index fb4bac6a..18d9ee17 100644 --- a/.editorconfig +++ b/.editorconfig @@ -19,3 +19,9 @@ indent_size = 2 [*.py] indent_style = space indent_size = 4 + +[{Makefile,*.mak}] +indent_style = tab + +[COMMIT_EDITMSG] +max_line_length = 72