editorconfig: Place comments on a new line, as required by version >= 0.15.0
parent
0d8eaac1ba
commit
b1eed6a37f
|
@ -10,10 +10,14 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf # Unix-style newlines
|
||||
charset = utf-8 # All files are in UTF-8
|
||||
insert_final_newline = true # All files end with a newline
|
||||
trim_trailing_whitespace = true # No trailing whitespaces
|
||||
# Unix-style newlines
|
||||
end_of_line = lf
|
||||
# All files are in UTF-8
|
||||
charset = utf-8
|
||||
# All files end with a newline
|
||||
insert_final_newline = true
|
||||
# No trailing whitespaces
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
|
|
Loading…
Reference in New Issue