From 4fdd0e51c118ccdf7bb2e1cba55bbf0cab7661fa Mon Sep 17 00:00:00 2001 From: Dominik Siebel Date: Sat, 28 Dec 2024 20:54:53 +0100 Subject: [PATCH] Introduce editorconfig for more consistent formatting --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f79a823d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +; editorconfig.org +root = true + +[*] +charset = utf-8 +continuation_indent_size = 2 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 120 +tab_width = 2 +; trim_trailing_whitespace = true ; disabled until files are cleaned up + +[*.md] +trim_trailing_whitespace = false