From c302fa26382596c770072179ad26e4cf6776aec6 Mon Sep 17 00:00:00 2001 From: Sak32009 Date: Sun, 25 Aug 2024 11:31:51 +0200 Subject: [PATCH] added .editorconfig for compatible IDEs --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..0709045d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +max_line_length = 120 + +[*.py] +indent_size = 4 + +[*.h] +indent_size = 4 + +[*.cpp] +indent_size = 4