diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-10 15:20:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 15:20:52 (GMT) |
commit | 5b168fdd6fd0846fe1dac8b23866aec834db8283 (patch) | |
tree | ce62a54b31ef4bab97989c53491ac66f528218e4 /.editorconfig | |
parent | c9157feeec86dfeac6716bd1c946693ea076780b (diff) | |
download | cpython-5b168fdd6fd0846fe1dac8b23866aec834db8283.zip cpython-5b168fdd6fd0846fe1dac8b23866aec834db8283.tar.gz cpython-5b168fdd6fd0846fe1dac8b23866aec834db8283.tar.bz2 |
[3.12] gh-110631: Set three-space indents for reST in EditorConfig (GH-110635) (#110637)
gh-110631: Set three-space indents for reST in EditorConfig (GH-110635)
Set three-space indents in EditorConfig
(cherry picked from commit 66a9b1082049855889854bfde617059499c26dd2)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to '.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 |