From e0925a42ed12cc366b32601bcff527e61947042b Mon Sep 17 00:00:00 2001 From: UserMandhapati Date: Fri, 30 Jan 2026 16:00:15 +0100 Subject: [PATCH] chore: add .editorconfig file Add .editorconfig to ensure consistent coding styles across different editors and IDEs. --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..ca839fbf0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[Makefile] +indent_style = tab