diff options
| author | Benjamin Linskey | 2026-05-22 03:35:26 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-22 03:35:26 -0400 |
| commit | 434ec14de2f3569d663a16f580f2963cc8b32656 (patch) | |
| tree | c91be006bb6a0ca349084850e36e4f6005784104 | |
| parent | 9cf35d12942406a5dca956ec9dcdc8bb106870d5 (diff) | |
| download | dotfiles-434ec14de2f3569d663a16f580f2963cc8b32656.tar.gz | |
Add EditorConfig rules for YAML and Python
| -rw-r--r-- | .editorconfig | 8 |
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 |