From 6857e0b6c593c7524b8614063602f6dc37b3f991 Mon Sep 17 00:00:00 2001 From: Jakob Bagterp Date: Sat, 2 Nov 2024 07:30:11 +0100 Subject: [PATCH] Added new .editorconfig for configuration of coding style. --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ba511af --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +# Default for all files +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +# YAML +[*.{yml,yaml}] +indent_size = 2