summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2022-10-02 19:22:10 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2022-10-03 12:58:13 +0200
commita71fc67b9c6aaf9a42b10127050d9016dbbcdb4d (patch)
tree32ddfe5a446f9d4222f436760b2300bb5db1d6cf /.editorconfig
parent56ffba7c5a904f30579fcd4bab6b9c75b853b0dc (diff)
fix editor config and spaces inside of quotes
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig7
1 files changed, 6 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index df73b20ac..bac177253 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -5,11 +5,16 @@ trim_trailing_whitespace = true
end_of_line = lf
insert_final_newline = true
-[*.{js,php,html,vue}]
+[*.{php,html}]
indent_style = space
indent_size = 4
charset = utf-8
+[*.{js,ts,vue}]
+indent_style = tab
+indent_size = 4
+charset = utf-8
+
[*.bats]
indent_style = space
indent_size = 2