From 2175cc3920e26e41ea980988ea465c7ad34bf24b Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 22 Jun 2021 11:02:37 -0500 Subject: [PATCH] editorconfig: Use 3-space tabs for .rst This is what all the sphinx examples do and is what most of docs/ currently does. Acked-by: Erik Faye-Lund Reviewed-by: Connor Abbott Part-of: --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 3f9e475..a9c55b7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -36,6 +36,10 @@ indent_size = 2 indent_style = space indent_size = 2 +[*.rst] +indent_style = space +indent_size = 3 + [*.patch] trim_trailing_whitespace = false -- 2.7.4