From c6372255d5042c116a150c3b4fecc11bff9f7fa2 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 27 Nov 2023 14:21:35 +0100 Subject: [PATCH] editorconfig: new file (#2746) Add a file that allows editors to automatically use the right indentation format when working with the open5gs source tree. --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..897e2eafe --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +; See http://editorconfig.org +root = true + +[*.{c,h}] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true