From 4a06be11cd24f6195af13ea57c86a56c5ebdadbe Mon Sep 17 00:00:00 2001 From: Mitchell Date: Fri, 13 Apr 2018 13:56:44 -0700 Subject: [PATCH] Adding editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..54d5d0d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +charset = utf-8 +trim_trailing_whitespace = true +end_of_line = lf +insert_final_newline = true + +# Tab indentation (no size specified) +[Makefile] +indent_style = tab + +[*.{c,h,cpp,hpp,cl}] +indent_size = 4