Skip to content

Commit

Permalink
Fix .editorconfig mandating tabs for Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
appgurueu authored and sfan5 committed Aug 16, 2024
1 parent 6874c35 commit 44db47e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[*]
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
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
charset = utf-8
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

0 comments on commit 44db47e

Please sign in to comment.