From fe5b3a2a16841b73070a577e8bf8350f8a301c1c Mon Sep 17 00:00:00 2001 From: Marco Franssen Date: Wed, 8 Feb 2023 13:50:19 +0100 Subject: [PATCH] Add .editorconfig This is convenient to have some basic formatting automatically done on files At least for the people that have the .editorconfig plugin in their IDE Signed-off-by: Marco Franssen --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3955c5d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +tab_width = 2 +trim_trailing_whitespace = true +insert_final_newline = true