summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--SUBMITTING_PATCHES.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/SUBMITTING_PATCHES.md b/SUBMITTING_PATCHES.md
index 5021e7ee..316cb620 100644
--- a/SUBMITTING_PATCHES.md
+++ b/SUBMITTING_PATCHES.md
@@ -55,9 +55,14 @@ Run `flake8` on changes modules:
55 flake8 file.py 55 flake8 file.py
56 56
57Note that repo generally follows [Google's python style guide] rather than 57Note that repo generally follows [Google's python style guide] rather than
58[PEP 8], so it's possible that the output of `flake8` will be quite noisy. 58[PEP 8], with a couple of notable exceptions:
59It's not mandatory to avoid all warnings, but at least the maximum line 59
60length should be followed. 60* Indentation is at 2 columns rather than 4
61* The maximum line length is 100 columns rather than 80
62
63It's possible that the output of `flake8` will be quite noisy, so it's not
64mandatory to avoid all warnings, but at least the maximum line length
65should be followed.
61 66
62If there are many occurrences of the same warning that cannot be 67If there are many occurrences of the same warning that cannot be
63avoided without going against the Google style guide, these may be 68avoided without going against the Google style guide, these may be