From eb23d5c00b6f9737ee936fc8f7c19b9d43e9818b Mon Sep 17 00:00:00 2001 From: p_magyar Date: Thu, 21 Mar 2024 23:40:50 +0100 Subject: [PATCH] #15 Added .editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ca4f197 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +charset = utf-8 + +[*.py] +indent_size = 4 +max_line_length = 99 + +[*.{yml,yaml}] +indent_size = 2