From 157651309d833c6c6216f2215fbc756f37b5180c Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Sun, 10 May 2020 15:59:40 +1000 Subject: [PATCH] Add quick .editorconfig Should limit obvious formatting woes until we get our .clang-format game together --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7899eb2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# https://EditorConfig.org + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 3 + +[{Makefile,*/Makefile,*.mk,*_rules}] +indent_style = tab +indent_size = 4 + +[*.yml] +indent_style = space +indent_size = 2