From da2b65cd7ce4c92480326e1e41ef510d70e66324 Mon Sep 17 00:00:00 2001 From: bergquist Date: Tue, 8 Mar 2016 14:31:31 +0100 Subject: [PATCH] feat(editorconfig): add config for go files --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.editorconfig b/.editorconfig index 5760be58369..831bb8696cc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,13 @@ # http://editorconfig.org root = true +[*.go] +indent_style = tabs +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + [*] indent_style = space indent_size = 2