From bad36a69e87af8417cd29250c58a321e6819419a Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Mon, 17 May 2021 09:52:29 +0200 Subject: [PATCH] added editorconfig --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ca0c4c9e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 4 +tab_width = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{yaml,yml}] +indent_size = 2 + +[*.md] +indent_size = 2 + +# Makefiles always use tabs for indentation +[Makefile] +indent_style = tab