From baebe9b8d7d43a93e0ddebcc72b801e466ad92c5 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 18 Jul 2024 17:20:11 +0200 Subject: [PATCH] Add editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..682f112 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# Check http://editorconfig.org for more information +# This is the main config file for this project: +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false +max_line_length = 119