From 7a36d91d8ab398bf4b452e1befb26fae7e9b6717 Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 22 Jul 2026 22:24:04 +0700 Subject: [PATCH] Add .editorconfig: 4-space default, tabs for Go and Makefile --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..92ec261 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[Makefile] +indent_style = tab + +[*.go] +indent_style = tab