Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 13:06:12 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 13:06:12 -0400
commit340048db672b4d1a7fb4bec89ce26825a614ebee (patch)
treefa42da9c297d7d1ecea8580c012908e4729adab7 /CONTRIBUTING.md
parente111dd9bc1ac1c27efa14f89a2cb1464f135c0da (diff)
Update CONTRIBUTING.md to remove deviations we no longer have.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 514035bc..1d490a44 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -37,11 +37,6 @@ The exceptions to PEP8 are:
* [Line breaks before/after binary operator](https://www.python.org/dev/peps/pep-0008/#should-a-line-break-before-or-after-a-binary-operator)
is not enforced, as long as the style of line breaks are consistent within the same code block.
* Archinstall should always be saved with **Unix-formatted line endings** and no other platform-specific formats.
-* [Blank lines](https://www.python.org/dev/peps/pep-0008/#blank-lines) before/after imports and functions are not
- followed and discouraged. One space is commonly used in archinstall.
-* Multiple [Imports](https://www.python.org/dev/peps/pep-0008/#imports) on the same line is allowed, but more than five
- imports should be avoided on any given line. This simply saves up some space at the top of the file *(for non-IDE
- developers)* and will not be enforced.
* [String quotes](https://www.python.org/dev/peps/pep-0008/#string-quotes) follow PEP8, the exception being when
creating formatted strings, double-quoted strings are *preferred* but not required on the outer edges *(
Example: `f"Welcome {name}"` rather than `f'Welcome {name}'`)*.