From a323e2c39c4f29cef1bf4dd102cf995a269b43c7 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 28 Jan 2024 15:33:51 -0800 Subject: [PATCH] add .editorconfig Standardized file supported by many editors to avoid bad indentation. Signed-off-by: Rosen Penev --- .editorconfig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..620f528bea --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +[*] +charset = utf-8 +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace=true