From e59854604a8ebd5c721190acf9dfe5be3241a9e7 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Fri, 29 Aug 2025 13:53:45 -0300 Subject: [PATCH] chore: add `.editorconfig` --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000000000000000000000000000000..0407ebbcbf7483988728000ce19928a0ffc3cdf6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# https://editorconfig.org/ + +root = true + +[*] +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 2 + +[*.go] +indent_style = tab +indent_size = 4 + +[*.golden] +insert_final_newline = false +trim_trailing_whitespace = false