From 5be28d8b5661c1d0fce1f6211224031685f3056b Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Mon, 22 Apr 2024 20:28:29 +0100 Subject: [PATCH] .editorconfig: set max_line_length=80 for *.md --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 82720534..3e3ab27e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,9 +9,12 @@ indent_style = tab indent_size = 8 max_line_length = 80 -[*.{xml,build}] +[*.{xml,build,md}] indent_style = space indent_size = 2 +[*.md] +max_line_length = 80 + [COMMIT_EDITMSG] max_line_length = 74