From 44db47e64ac095af62026aff14303c7834a87bb1 Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Tue, 13 Aug 2024 02:53:04 +0200 Subject: [PATCH] Fix `.editorconfig` mandating tabs for Markdown --- .editorconfig | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index e273afa92..a2cc31dc1 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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