set indent_style to valid value
Per the documentation for editorconfig the two valid values for ```indent_style``` are 'tab' or 'space'
This commit is contained in:
parent
27801287ac
commit
e8ee08d159
|
@ -7,7 +7,7 @@ root = true
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
indent_style = spaces
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
[*.md]
|
[*.md]
|
||||||
|
|
Loading…
Reference in New Issue