From 65ae888901398d90580872ba3c2ea74ffe53cc9d Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Mon, 6 Feb 2023 17:27:20 +0100 Subject: [PATCH] meta: Add editorconfig for consistent files Signed-off-by: Noah Knegt --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e6fe793 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = tab +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml, yaml}] +indent_style = space +indent_size = 2