aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.editorconfig
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-04-11 02:31:52 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-04-11 02:31:52 +0200
commit9d5726e20776a3e52ebf2aba4884edcc26c92913 (patch)
tree8e6d8588a6efdf1600879a5c64eb033461d04a01 /.editorconfig
parentactually create some tables in SQLite database (diff)
downloadcimple-9d5726e20776a3e52ebf2aba4884edcc26c92913.tar.gz
cimple-9d5726e20776a3e52ebf2aba4884edcc26c92913.zip
.editorconfig: disable tab indentation for Python files
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig6
1 files changed, 5 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index d9adece..e85ebec 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,6 +1,10 @@
root = true
[*]
+indent_style = space
+indent_size = 4
+insert_final_newline = true
+
+[*.{c,h,sql}]
indent_style = tab
indent_size = 8
-insert_final_newline = true