]> sigrok.org Git - libsigrokdecode.git/commitdiff
HACKING: Add some Python coding style hints, fix incorrect docs.
authorUwe Hermann <redacted>
Mon, 30 Dec 2019 16:04:17 +0000 (17:04 +0100)
committerUwe Hermann <redacted>
Tue, 31 Dec 2019 15:27:28 +0000 (16:27 +0100)
HACKING

diff --git a/HACKING b/HACKING
index a4698a62719290dc238e657d9dafc176ff195b95..c5f24f55d6fc493e0fe8e8cbe96f87ade33342b5 100644 (file)
--- a/HACKING
+++ b/HACKING
@@ -17,6 +17,12 @@ the Python PEP-8, which includes the convention of 4 spaces for indentation:
 
   http://www.python.org/dev/peps/pep-0008/
 
+Exceptions:
+
+ - All strings should use single quotes ('foo' instead of "foo").
+
+ - No double-newlines between methods (or anywhere else).
+
 
 Contributions
 -------------
@@ -141,7 +147,7 @@ Protocol decoder guidelines
 
  - Longer, multi-line descriptions should be placed in the protocol
    decoder's __init__.py file as docstring. It can be viewed (for a specific
-   protocol decoder, e.g., UART) via "sigrok-cli -a uart", or in various
+   protocol decoder, e.g., UART) via "sigrok-cli -P uart --show", or in various
    other places in GUIs.
 
  - Generally use strings for states (of the PD state machine), not integers.