From d6a8af33c4392f45db8eb6642b4c3f9f4b8924e9 Mon Sep 17 00:00:00 2001 From: ShuYu Wang Date: Sun, 5 Mar 2017 18:17:35 +0800 Subject: [PATCH] .editorconfig: add .editorconfig file, make tab_size = 4 (#2779) --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000..43c6a002cce45 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +# tab_size = 4 spaces +[*.go] +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = true