From 66809a48e9f8b38aa975b944c0d3437bb044e10e Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 30 Nov 2025 10:45:39 +1000 Subject: [PATCH] Configure EditorConfig for `sh`, `yaml`, `yml` Based on exsiting files --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.editorconfig b/.editorconfig index 767f078..c9706d8 100644 --- a/.editorconfig +++ b/.editorconfig @@ -25,3 +25,11 @@ trim_trailing_whitespace = true [Makefile] indent_style = tab + +[*.sh] +indent_size = 4 +indent_style = space + +[*.{yaml,yml}] +indent_size = 2 +indent_style = space