commit: 72f299d34cd97d70f3182ad252a2f5d62f0d7cef Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Thu Sep 22 18:40:29 2022 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sat Sep 24 16:27:57 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=72f299d3
DEVELOPING: differentiate spaces/tabs in Python/Bash files Closes: https://github.com/gentoo/portage/pull/905 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> DEVELOPING | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DEVELOPING b/DEVELOPING index 38e6032d6..3a97f1aa0 100644 --- a/DEVELOPING +++ b/DEVELOPING @@ -21,12 +21,13 @@ with Python itself, must be optionally enabled by runtime detection. Tabs ---- -We comply with PEP 8 so we now use spaces. +We comply with PEP 8 so we now use spaces in Python source files. +We use tabs in Bash files for consistency with ebuild code. Line-Wrapping ------------- -Please use Black for formatting. +Please use Black for formatting of Python source files. Lines should typically not be longer than 80 characters; if they are, an attempt should be made to wrap them. Move code to the line below and
