diff options
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index 4ff2eca..92ff780 100644 --- a/.editorconfig +++ b/.editorconfig @@ -18,14 +18,20 @@ 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 |