From eca6f0b46cd71ace9100c676cfc43a4c386b73af Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 4 Jun 2022 07:33:22 -0400 Subject: [PATCH] editorconfig: Use standard formatting for go go fmt uses tabs instead of spaces, so we might as well format our code the same way. --- editorconfig/.editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editorconfig/.editorconfig b/editorconfig/.editorconfig index dccf929c..99f68e97 100644 --- a/editorconfig/.editorconfig +++ b/editorconfig/.editorconfig @@ -17,3 +17,7 @@ indent_size = 4 [*.html] indent_style = tab indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 4