From 4df642be0fd596ee2c9f1a4166a983d7f1771e03 Mon Sep 17 00:00:00 2001 From: Frieder Griesshammer Date: Mon, 21 Jun 2021 22:14:29 +0200 Subject: [PATCH] Add editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a931fa7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +indent_size = 4 +indent_style = space + +[*.yaml] +indent_size = 2 +indent_style = space