diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 16:42:39 +0900 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2020-02-12 12:33:02 +0000 |
commit | dc63181fcd3c34340e3acb5c72ae80539b5c7282 (patch) | |
tree | 53c32fa97e62c5cd69886405d6f9893d170ed50d | |
parent | f700ac79c3437b248f7add9cd1f53a44785d04f9 (diff) | |
download | git-repo-dc63181fcd3c34340e3acb5c72ae80539b5c7282.tar.gz |
flake8: Add comments in config to explain suppressed checks
Change-Id: Ib5c09b36d40a96ba9167b42b3bd2f1ed072660b7
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254611
Tested-by: David Pursehouse <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
-rw-r--r-- | .flake8 | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,13 @@ | |||
1 | [flake8] | 1 | [flake8] |
2 | max-line-length=100 | 2 | max-line-length=100 |
3 | ignore=E111,E114,E402,W503,W504 | 3 | ignore= |
4 | # E111: Indentation is not a multiple of four | ||
5 | E111, | ||
6 | # E114: Indentation is not a multiple of four (comment) | ||
7 | E114, | ||
8 | # E402: Module level import not at top of file | ||
9 | E402, | ||
10 | # W503: Line break before binary operator | ||
11 | W503, | ||
12 | # W504: Line break after binary operator | ||
13 | W504 | ||