From 16daefd609f921bcf18eeac80eed5378f6792c1b Mon Sep 17 00:00:00 2001 From: patrick96 Date: Sat, 23 Sep 2017 17:06:56 +0200 Subject: [PATCH] Add .editorconfig For editors that don't autodetect indent style and size --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4bb7b1e1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +insert_final_newline = true +indent_style = space +indent_size = 2 +charset = utf-8 + +[Makefile] +indent_style = tab +indent_size = 2