diff options
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index d28b4e3..92ff780 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,14 +15,23 @@ tab_width = 8 indent_size = 2 max_line_length = 80 +[*.{sh,bash}] +indent_size = 2 + +[store/debian-dev/**/*.{sh,bash}] +indent_size = 4 + [*.{html,css,js,ts}] indent_size = 2 [*.{c,cpp,h}] indent_size = 2 -[*.{json,yaml,yml}] +[*.{json,yaml,yml,yaml.template}] indent_size = 2 [*.py] profile = black + +[*.lua] +indent_size = 4 |