diff options
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index beab7a9..92ff780 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,6 +13,13 @@ tab_width = 8 [*.md] 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 @@ -20,8 +27,11 @@ 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 |