From c3ee3b46547e99edc9fb2789696a170896b67acd Mon Sep 17 00:00:00 2001 From: nico wellpott Date: Mon, 7 Jun 2021 17:19:21 +0200 Subject: [PATCH] editorconfig: init + add basic editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b52f1b6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +trim_trailing_whitespace = true + +[.git*] +indent_size = 4 +indent_style = tab + +[*.md] +trim_trailing_whitespace = false