From 0ca48d55da6e21aa9a5d327dba9d4b5c87964446 Mon Sep 17 00:00:00 2001 From: HemaOnGit Date: Wed, 18 Feb 2026 15:32:34 +0100 Subject: [PATCH] chore: add .editorconfig for consistent coding style Add a .editorconfig file to define and maintain consistent coding styles between different editors and IDEs, specifically for tab indentation in Go. --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..410380647 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +indent_style = space +indent_size = 2