From 5a57f2ef6444a93b27035a178fbf1cfccc04279f Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 9 Mar 2017 20:47:53 +0800 Subject: [PATCH] Add basic support for EditorConfig --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..f58613fb0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: http://EditorConfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true + +[**.yml] +indent_size = 2