Skip to content

Commit d1925e6

Browse files
committed
editorconfig: fix bad syntax
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]>
1 parent 46f6087 commit d1925e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.editorconfig

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ indent_style = space
2121
indent_size = 3
2222

2323
[Makefile]
24-
indent_style = tabs
24+
indent_style = tab
2525
indent_size = tab
2626

2727
[*.sh]
28-
indent_style = tabs
28+
indent_style = tab
2929
indent_size = tab
3030

3131
[*.{h,c}]
32-
indent_style = tabs
32+
indent_style = tab
3333
indent_size = tab

0 commit comments

Comments
 (0)