-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
32 lines (27 loc) · 926 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[MESSAGES CONTROL]
disable=C0103, C0301, R0801, E1101, E0611
# See here for more options: https://www.codeac.io/documentation/pylint-configuration.html
# C0103: REST method names are equivalent to their gRPC counterparts and those are autogenerated with invalid names according to PyLint
# C0301: http://pylint-messages.wikidot.com/messages:c0301 > Line too long (%s/%s), # kept as no harm
# R0801: similar lines, Examples use similair lines for arugments passing.
# E1101: Function %r has no %r member
# Tx and ANY's member's are not recognised.
# E0611: No name in module.
# No name 'Any' in module 'google.protobuf.any_pb2'.
[IMPORTS]
ignored-modules=.*_pb2.py, google
[DESIGN]
min-public-methods=1
max-public-methods=36
max-returns=10
max-bool-expr=7
max-args=27
max-locals=31
max-statements=80
max-parents=11
max-branches=24
max-attributes=38
[REFACTORING]
max-nested-blocks=6
[MASTER]
ignore=protos