From c55096fca4a969e48a3326ed25c532a7f905e64f Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Thu, 27 Nov 2025 19:03:46 +0300 Subject: [PATCH] meta: set up Editorconfig for Makefiles and C sources Signed-off-by: NotAShelf Change-Id: Ib28df169ab71a71f68486255a41e10dc6a6a6964 --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f267605 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.c] +ident_style = space +ident_size = 4 + +[Makefile*] +ident_style = tab +ident_size = 4