From 92a41dfc57c2370eae9c5fd02d685fcde1876ab5 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 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..5c0c74d421 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace=true