-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pylintrc
19 lines (15 loc) · 942 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[MASTER]
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=slog.protobufs,slog.protobufs.slog_pb2,slog.protobufs.slog_pb2_grpc
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=slog.protobufs,slog.protobufs.slog_pb2,slog.protobufs.slog_pb2_grpc
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set). This supports can work
# with qualified names.
ignored-classes=slog.protobufs,slog.protobufs.slog_pb2,slog.protobufs.slog_pb2_grpc