From 1ceb56fc7f243fe0edada5a846f645ce8b99390e Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Tue, 8 Nov 2016 11:41:02 +0100 Subject: [PATCH] Go uses ident size 8 with tabs. Nothing else. We are using gofmt to format our code. This will emit tabs. The standard is tabs which is 8 spaces. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 0fb78d3dc..8464c520e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,7 +10,7 @@ trim_trailing_whitespace = true [*.go] indent_style = tab -indent_size = 4 +indent_size = 8 [*.tmpl] indent_style = tab