aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-05-22 03:35:26 -0400
committerBenjamin Linskey2026-05-22 03:35:26 -0400
commit434ec14de2f3569d663a16f580f2963cc8b32656 (patch)
treec91be006bb6a0ca349084850e36e4f6005784104
parent9cf35d12942406a5dca956ec9dcdc8bb106870d5 (diff)
downloaddotfiles-434ec14de2f3569d663a16f580f2963cc8b32656.tar.gz

Add EditorConfig rules for YAML and Python

-rw-r--r--.editorconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 8e70ea5..6257f81 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -16,3 +16,11 @@ indent_style = tab
# Git commit message
[COMMIT_EDITMSG]
max_line_length=72
+
+[*.{yml,yaml}]
+indent_style = space
+indent_size = 2
+
+[*.py]
+indent_style = space
+indent_size = 4