From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 10 Aug 2021 17:08:59 +0000 (-0700) Subject: bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638) (GH... X-Git-Tag: v3.8.12~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f88aeadc19b1d3ece4723efb240e6d6753570b9;p=thirdparty%2FPython%2Fcpython.git bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638) (GH-27713) (cherry picked from commit c0ab59f7de1906feee21c057ad433fad924d1e38) Co-authored-by: Ɓukasz Langa --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..81445d2d79c7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*.{py,c,cpp,h,rst,md,yml}] +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space + +[*.{py,c,cpp,h}] +indent_size = 4 + +[*.yml] +indent_size = 2