From eaf08e47c3c7ede48204477e3af302cb7d8d92e0 Mon Sep 17 00:00:00 2001 From: Lars Michelsen Date: Fri, 20 Dec 2019 22:28:06 +0100 Subject: [PATCH] Basic config for different editors EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. https://editorconfig.org/ --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0010acd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# Project root editor config +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true +max_line_length = 100