From 78c2f1e90939cc8d3ba2b0d6455a2369e22089bc Mon Sep 17 00:00:00 2001 From: tsuyoshiwada Date: Thu, 15 Feb 2018 00:01:17 +0900 Subject: [PATCH] chore(editor): Add Editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..c7ae182e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false + +[Makefile] +indent_style = tab