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 <[email protected]>
  • Loading branch information
rjarry committed Mar 28, 2024
1 parent 83e76f9 commit 2e6261a
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 2e6261a

Please sign in to comment.