aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.editorconfig
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-04-11 02:56:40 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-04-11 02:56:40 +0200
commitba4b5c79fa9536886bf8c138ab1e67e574828033 (patch)
treeb91ee551d066cf8860c8ad712ff2e29af08c9e21 /.editorconfig
parent.editorconfig: disable tab indentation for Python files (diff)
downloadcimple-ba4b5c79fa9536886bf8c138ab1e67e574828033.tar.gz
cimple-ba4b5c79fa9536886bf8c138ab1e67e574828033.zip
.editorconfig: minor adjustments
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig11
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