From 829c2f57c63adfd40e180fc65a8b6b2b6175ab82 Mon Sep 17 00:00:00 2001 From: bananaapple Date: Tue, 18 Oct 2016 15:45:06 +0800 Subject: [PATCH] Add .editorconfig (#92) --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7199a70 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab