diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-10-10 14:36:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 14:36:19 (GMT) |
commit | 66a9b1082049855889854bfde617059499c26dd2 (patch) | |
tree | ce4514359acd059c87277960082cd914fd3a9244 | |
parent | 5bc1b7f08d4f50c34b90c07402aae849b1f5d395 (diff) | |
download | cpython-66a9b1082049855889854bfde617059499c26dd2.zip cpython-66a9b1082049855889854bfde617059499c26dd2.tar.gz cpython-66a9b1082049855889854bfde617059499c26dd2.tar.bz2 |
gh-110631: Set three-space indents for reST in EditorConfig (#110635)
Set three-space indents in EditorConfig
-rw-r--r-- | .editorconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 81445d2..0169eed 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,8 @@ indent_style = space [*.{py,c,cpp,h}] indent_size = 4 +[*.rst] +indent_size = 3 + [*.yml] indent_size = 2 |