From 61b4e5ef80d665fb027ca46aab4ee93bb86ac710 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 23 Oct 2020 10:26:39 +0200 Subject: [PATCH] editorconfig: include markdown specifications The markdown files in this project use spaces instead of tabs and usually have an indent of 2. --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 8631442a..b68f875b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,6 +6,10 @@ insert_final_newline = true trim_trailing_whitespace = true charset = utf-8 +[*.md] +indent_style = space +indent_size = 2 + [*.py] indent_style = space indent_size = 4