From 60a450562fb839f018360d13dbc79afa7e5d22e6 Mon Sep 17 00:00:00 2001 From: Shiva Vinodkumar <127319648+shiva24082@users.noreply.github.com> Date: Thu, 2 Jul 2026 11:08:54 +0530 Subject: [PATCH] Add .editorconfig to improve repository standards (#5879) --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..d54392c567 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.sh] +indent_size = 4