From 33741ce6ac8c7560e5e6cfdd43dc28005e4ff325 Mon Sep 17 00:00:00 2001 From: Jean-Paul van Ravensberg <14926452+DevSecNinja@users.noreply.github.com> Date: Tue, 18 Aug 2026 10:48:12 +0200 Subject: [PATCH] chore: add .editorconfig for consistent formatting shfmt reads .editorconfig automatically, so CI will now enforce 4-space indent for shell scripts matching the org coding standards. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: d78695b5-ded3-4a2c-9f2a-f30c77d7d188 --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4a1f3c7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# EditorConfig — https://editorconfig.org +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 + +[*.{yml,yaml,json}] +indent_style = space +indent_size = 2 + +[*.md] +indent_style = space +indent_size = 4 + +[*.sh] +indent_style = space +indent_size = 4 + +[Makefile] +indent_style = tab