From 805877c85cea6eeba9755cade8196f02d17b3f80 Mon Sep 17 00:00:00 2001 From: Peter Butzhammer Date: Mon, 29 Apr 2024 16:31:45 +0200 Subject: [PATCH] Add .editorconfig --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..23fd735 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Baseline +[*] +charset = utf-8-bom +indent_style = space +indent_size = 4 +tab_width = 4 +trim_trailing_whitespace = true +max_line_length = 200 +insert_final_newline = true + +[*.{json,xml,csproj,config}] +indent_size = 2 + +[Directory.*.props] +indent_size = 2