From 88dd90c37f3e6f1b0ecd01a34fb280137f33f8d7 Mon Sep 17 00:00:00 2001 From: Niklas Hauser Date: Sat, 16 Nov 2024 22:47:18 +0100 Subject: [PATCH] [config] Add basic .editorconfig --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c308ed0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false