From 7bb2f4340461c8a33ac85c21091a021e035c41e2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 21 May 2020 01:50:10 +0200 Subject: [PATCH] Add .editorconfig. --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e539902 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# Configuration file for EditorConfig. +# More information is available under . + +root = true + +[*] +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 80 +indent_size = 4 +tab_width = 4