From f493bd539d53350347b727fd13a00e7ee2515036 Mon Sep 17 00:00:00 2001 From: Marcin Gordziejewski Date: Wed, 16 Feb 2022 00:12:08 +0100 Subject: [PATCH] Add .editorconfig entry for .rst files to enforce space indentation --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 439867898..892e1dd13 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,6 +21,9 @@ indent_style = space [*.yml] indent_style = space +[*.rst] +indent_style = space + # Tests don't get a line width restriction. It's still a good idea to follow # the 79 character rule, but in the interests of clarity, tests often need to # violate it.