From 40c99c38c13e9e3b5d94a2c5a16c4b59ac69d899 Mon Sep 17 00:00:00 2001 From: Huang Yi Date: Fri, 17 Jan 2020 14:30:42 +0800 Subject: [PATCH] Add editor config --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6f313c6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_size = 2