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".

Signed-off-by: Robin Jarry <robin@jarry.cc>
  • Loading branch information
rjarry committed Mar 27, 2024
1 parent 93a63a1 commit 140b3c0
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 140b3c0

Please sign in to comment.