diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-04-11 02:56:40 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-04-11 02:56:40 +0200 |
commit | ba4b5c79fa9536886bf8c138ab1e67e574828033 (patch) | |
tree | b91ee551d066cf8860c8ad712ff2e29af08c9e21 /.editorconfig | |
parent | .editorconfig: disable tab indentation for Python files (diff) | |
download | cimple-ba4b5c79fa9536886bf8c138ab1e67e574828033.tar.gz cimple-ba4b5c79fa9536886bf8c138ab1e67e574828033.zip |
.editorconfig: minor adjustments
Diffstat (limited to '')
-rw-r--r-- | .editorconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index e85ebec..4623061 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,15 @@ indent_style = space indent_size = 4 insert_final_newline = true -[*.{c,h,sql}] +[Makefile] +indent_style = tab + +[*.{c,h}] indent_style = tab indent_size = 8 + +[*.sql] +indent_style = tab + +[*.yml] +indent_size = 2 |