From c38a5945cab4d2c033ea39775c58af417ffc42f4 Mon Sep 17 00:00:00 2001 From: Hubertbits <170125456+hubertbits@users.noreply.github.com> Date: Sat, 12 Apr 2025 00:19:37 +0200 Subject: [PATCH] editorconfig: add go configiuration to reflect project style Signed-off-by: yxxhero --- .editorconfig | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 78bf3a94..890077c3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,6 +4,14 @@ root = true insert_final_newline = true trim_trailing_whitespace = true +[*.go] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + [Makefile] indent_style = tab -indent_size = 4 \ No newline at end of file +indent_size = 4