aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pylintrc
diff options
context:
space:
mode:
authorGravatar Lidi Zheng <lidiz@google.com>2018-12-10 16:19:35 -0800
committerGravatar Lidi Zheng <lidiz@google.com>2018-12-10 16:21:49 -0800
commit8cb2d0546d14574977c4943d33bb103954078bbd (patch)
treec7090a0cd3c81e36c95c8a5ca0232d88a6184689 /.pylintrc
parent60f2d379fec3364ff59f4f0d463b16275525863d (diff)
Upgrade sanity Docker image to debian:stretch
* Use latest pylint in Python 3.7 (they dropped support for PY2) * Make latest pylint happy * Forced to upgrade to shellcheck 0.4.4 * Make shellcheck 0.4.4 happy * Adopt reviewers' advice to reduce global disabled rules
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc10
1 files changed, 10 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
index 90e8989ffc..ba74decb04 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -1,3 +1,11 @@
+[MASTER]
+ignore=
+ src/python/grpcio/grpc/beta,
+ src/python/grpcio/grpc/framework,
+ src/python/grpcio/grpc/framework/common,
+ src/python/grpcio/grpc/framework/foundation,
+ src/python/grpcio/grpc/framework/interfaces,
+
[VARIABLES]
# TODO(https://github.com/PyCQA/pylint/issues/1345): How does the inspection
@@ -82,3 +90,5 @@ disable=
# if:/else: and for:/else:.
useless-else-on-loop,
no-else-return,
+ # NOTE(lidiz): Python 3 make object inheritance default, but not PY2
+ useless-object-inheritance,