Skip to content

Commit

Permalink
editorconfig: fix bad syntax
Browse files Browse the repository at this point in the history
The proper indent_style value is "tab" not "tabs".

Link: http://docs.editorconfig.org/en/master/editorconfig-format.html#properties
Signed-off-by: Robin Jarry <[email protected]>
  • Loading branch information
rjarry committed Mar 28, 2024
1 parent 46f6087 commit d1925e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ indent_style = space
indent_size = 3

[Makefile]
indent_style = tabs
indent_style = tab
indent_size = tab

[*.sh]
indent_style = tabs
indent_style = tab
indent_size = tab

[*.{h,c}]
indent_style = tabs
indent_style = tab
indent_size = tab

0 comments on commit d1925e6

Please sign in to comment.