Skip to content

Commit 4351518

Browse files
committed
EditorConfig: set indent_size = tab
Despite `indent_size` being set to `tab` by default, it turns out that we set `indent_size` to `2` for `*` at the top of this file. So, for everywhere else, explicitly set `indent_size` to the default (`tab`). This should achieve the goal of my last patch to `.editorconfig`.
1 parent 99eab7a commit 4351518

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.editorconfig

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,18 @@ insert_final_newline = true
1313
trim_trailing_whitespace = false
1414

1515
[.git*]
16+
indent_size = tab
1617
indent_style = tab
1718

1819
[{**.*sh,test/run}]
20+
indent_size = tab
1921
indent_style = tab
2022

2123
shell_variant = bash
2224
binary_next_line = true # like -bn
2325
switch_case_indent = true # like -ci
2426
space_redirects = true # like -sr
25-
keep_padding = false # like -kp
27+
keep_padding = false # like -kp
2628
end_of_line = lf
2729
charset = utf-8
2830
trim_trailing_whitespace = true

0 commit comments

Comments
 (0)