summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorJeremy Bettis <jbettis@google.com>2022-07-12 17:16:48 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-14 19:55:11 +0000
commit56d045e6d7af9bb93a8a7389e37b1410c48a1283 (patch)
tree594619b25762e2b06b7a7ba2174230e7e4e2ce37 /pylintrc
parent1225fa58f96396781e6895bce2dc3e80d86d0f1c (diff)
downloadchrome-ec-56d045e6d7af9bb93a8a7389e37b1410c48a1283.tar.gz
py: Fix pylint errors discovered by cros lint
Resolve all pylint warnings in these files. Disable fixme and too-many-arguments globally, because they are very common, and aren't really problems. BRANCH=None BUG=b:238434058 TEST=cros lint Change-Id: I94c410330d6d576d3cc9518503699a514a28758d Signed-off-by: Jeremy Bettis <jbettis@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3760093 Tested-by: Jeremy Bettis <jbettis@chromium.org> Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Commit-Queue: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc7
1 files changed, 6 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 51f1236221..5af5f4e4dd 100644
--- a/pylintrc
+++ b/pylintrc
@@ -6,7 +6,12 @@
[MESSAGES CONTROL]
-disable=bad-continuation,bad-whitespace
+disable=
+ bad-continuation,
+ bad-whitespace,
+ # These have nothing to do with black, they are just annoying
+ fixme,
+ too-many-arguments
[format]