From bf2df14f072e44d3373742e6734ea4a0361f5dc5 Mon Sep 17 00:00:00 2001 From: autocommit Date: Sat, 16 May 2026 21:48:03 -0700 Subject: [PATCH] =?UTF-8?q?style(config):=20=F0=9F=8E=A8=20Update=20editor?= =?UTF-8?q?config=20to=20standardize=20coding=20style=20rules=20for=20inde?= =?UTF-8?q?ntation,=20line=20endings,=20and=20syntax=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .editorconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4706681 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[*.{md,markdown}] +trim_trailing_whitespace = false # markdown uses trailing spaces for line breaks + +[Makefile] +indent_style = tab + +[*.go] +indent_style = tab + +[*.{sh,bash}] +indent_size = 4 + +[*.{py,pyi}] +indent_size = 4 + +[*.yaml] +indent_size = 2