diff options
author | nico wellpott <nico@magicbroccoli.de> | 2022-04-27 13:35:42 +0200 |
---|---|---|
committer | nico wellpott <nico@magicbroccoli.de> | 2022-04-27 13:35:42 +0200 |
commit | f0b0e4f240a9d547c305835ffe71de2b445608d3 (patch) | |
tree | 9146f18fb6d753a23d0df509b7d66abb0eff07ce | |
parent | 2b997b6e8978ddda2a1226231af4f4d4d7bfa444 (diff) |
fix(misc): update editorconfig to include tmpl
following this change templates are also affected by the editorconfig
-rw-r--r-- | .editorconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.editorconfig b/.editorconfig index 751bd6b..6dca6bc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,17 +7,17 @@ insert_final_newline = true indent_style = space trim_trailing_whitespace = true -[*.yml] +[*.{yml,yml.tmpl,yaml,yaml.tmpl}] indent_size = 2 -[*.json] +[*.{json,json.tmpl}] indent_size = 2 [*.py] indent_size = 4 -[.git*] -indent_size = 8 +[{.git*,dot_git*,dot_git*.tmpl}] +indent_size = 4 indent_style = tab [*.md] |