editorconfig: Place comments on a new line, as required by version >= 0.15.0

Chaz Maschman 2023-11-05 14:12:23 +00:00 committed by Gabriel Ferreira
parent 0d8eaac1ba
commit b1eed6a37f
1 changed files with 8 additions and 4 deletions

View File

@ -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