From 11c03d33c2ff4daf4e0eaa4479622699df7f8661 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 27 Feb 2017 11:45:15 +0000 Subject: [PATCH] Add .editorconfig --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5a999757 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +# Tab indentation +[Makefile] +indent_style = tab +tab_width = 4