Skip to content

Commit

Permalink
EditorConfig: set indent_size = tab
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
gaelicWizard committed Sep 17, 2021
1 parent 99eab7a commit 4351518
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ 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
binary_next_line = true # like -bn
switch_case_indent = true # like -ci
space_redirects = true # like -sr
keep_padding = false # like -kp
keep_padding = false # like -kp
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
Expand Down

0 comments on commit 4351518

Please sign in to comment.