From d144009b7377d892141fa3434677fac63d230a03 Mon Sep 17 00:00:00 2001 From: Jiri Vlasak Date: Wed, 28 Jul 2021 14:24:58 +0200 Subject: [PATCH] Add editorconfig --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..549987b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*.{cc,hh}] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +indent_style = tab +indent_size = 8 +max_line_length = 80 + +[*.{py,md}] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 +max_line_length = 80 -- 2.39.2