Fix .editorconfig mandating tabs for Markdown

This commit is contained in:
Lars Mueller 2024-08-13 02:53:04 +02:00 committed by sfan5
parent 6874c358ea
commit 44db47e64a

View File

@ -1,9 +1,16 @@
[*] [*]
end_of_line = lf end_of_line = lf
[*.{cpp,h,lua,txt,glsl,md,c,cmake,java,gradle}] [*.{cpp,h,lua,txt,glsl,c,cmake,java,gradle}]
charset = utf-8 charset = utf-8
indent_size = 4 indent_size = 4
indent_style = tab indent_style = tab
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
[*.md]
charset = utf-8
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true