From e2625e25e09c644132ebffaecaa459a0c359b2f8 Mon Sep 17 00:00:00 2001 From: heck Date: Mon, 19 Oct 2020 21:08:17 +0200 Subject: [PATCH] Adding .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c3d65e6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 300 +tab_width = 4 + +# I know these keys are unknown, regard it as documentation +indent_brace_style = K&R +curly_bracket_next_line = false +spaces_around_operators = true +spaces_around_brackets = true +quote_type = double