From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 10 Aug 2021 17:06:18 +0000 (-0700) Subject: bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638) X-Git-Tag: v3.10.0rc2~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6808c6378ccfd732285ee20319658ac29eacf4c;p=thirdparty%2FPython%2Fcpython.git bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638) (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