diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-04-11 02:31:52 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-04-11 02:31:52 +0200 |
commit | 9d5726e20776a3e52ebf2aba4884edcc26c92913 (patch) | |
tree | 8e6d8588a6efdf1600879a5c64eb033461d04a01 | |
parent | actually create some tables in SQLite database (diff) | |
download | cimple-9d5726e20776a3e52ebf2aba4884edcc26c92913.tar.gz cimple-9d5726e20776a3e52ebf2aba4884edcc26c92913.zip |
.editorconfig: disable tab indentation for Python files
Diffstat (limited to '')
-rw-r--r-- | .editorconfig | 6 |
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 |