From 21ae859d1c33b486501ad96d823750d6cfa02269 Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Sat, 28 Feb 2026 19:59:22 -0500 Subject: [PATCH] Add .editorconfig Enforces 4-space indentation (tabs for Go and Makefiles), LF line endings, UTF-8 encoding, and trailing-whitespace trimming. Co-Authored-By: Claude Sonnet 4.6 --- .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