From a6092cccf2fae0fbd3bba348d601c4084cbb43a8 Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sat, 16 Dec 2017 17:01:55 +0100 Subject: [PATCH] add .editorconfig file This file allows multiple editors to use the same indent style and other params. See http://editorconfig.org/ --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..678b6d2b1b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[Makefile] +indent_style = tab + +[*.mk] +indent_style = tab + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true -- GitLab