From d0af2362adc2529b23b4ac32117568660fc876ff Mon Sep 17 00:00:00 2001 From: EasterRobert Date: Sat, 31 Jan 2026 13:15:24 +0100 Subject: [PATCH] chore: add .editorconfig file This PR adds an .editorconfig file to maintain consistent coding styles across different editors and IDEs for all contributors. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ea7457f1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# EditorConfig is helpful for maintaining consistent coding styles for multiple developers working on the same project across various editors and IDEs. + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[*.go] +indent_style = tab