aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pylintrc
diff options
context:
space:
mode:
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,