From 7e53fd5b4e46953b1c85077740706782efaea844 Mon Sep 17 00:00:00 2001 From: sotiris tzimas Date: Tue, 28 Jul 2026 15:19:44 +0300 Subject: [PATCH] Add .editorconfig for consistent editor settings Signed-off-by: sotiris tzimas --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..11792b0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space + +[*.py] +indent_size = 4 +max_line_length = 120 + +[*.{yml,yaml,toml,json}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false \ No newline at end of file