diff options
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/.editorconfig b/.editorconfig index a7ed4a83a..b5bd7f60e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,26 +3,14 @@ root = true - [*] +indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -# Tabs in JS unless otherwise specified -[**.js] -indent_style = tab - -[test/**.xml] -indent_style = tab - -[test/**.php] -indent_style = tab - -[test/**.html] -indent_style = tab - -[test/**.css] +[package.json] indent_style = space -indent_size = 8 +indent_size = 2 + |