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`.pull/1949/head
parent
99eab7a76c
commit
435151819f
|
|
@ -13,9 +13,11 @@ insert_final_newline = true
|
|||
trim_trailing_whitespace = false
|
||||
|
||||
[.git*]
|
||||
indent_size = tab
|
||||
indent_style = tab
|
||||
|
||||
[{**.*sh,test/run}]
|
||||
indent_size = tab
|
||||
indent_style = tab
|
||||
|
||||
shell_variant = bash
|
||||
|
|
|
|||
Loading…
Reference in New Issue