From f4050e01e8e3dddb2fc6c53a38c077ef05c0f33d Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 15 May 2021 01:35:25 +0200 Subject: [PATCH] [TASK] Limit the line length for Markdown files via `.editorconfig` (#251) The indentation of 4 spaces for Markdown and XML files already is set via the default configuration in the `.editorconfig`. Fixes #244 --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 7207e2d..0c5bdfe 100644 --- a/.editorconfig +++ b/.editorconfig @@ -47,3 +47,7 @@ indent_style = tab # .htaccess [.htaccess] indent_style = tab + +# Markdown files +[*.md] +max_line_length = 80