Skip to content

Commit aedbabd

Browse files
committed
Adjust pylint tolerance
1 parent e5eaee2 commit aedbabd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.pylintrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,31 @@ variable-rgx=(?:(?P<snake>[a-z_]+))
99
generated-members=RdBu
1010

1111
[DESIGN]
12+
13+
# Maximum number of arguments for function / method
1214
max-args=10
15+
16+
# Maximum number of locals for function / method body
1317
max-locals=40
1418

19+
# Maximum number of return / yield for function / method body
20+
max-returns=11
21+
22+
# Maximum number of branch for function / method body
23+
max-branches=20
24+
25+
# Maximum number of statements in function / method body
26+
max-statements=50
27+
28+
# Maximum number of attributes for a class (see R0902).
29+
max-attributes=11
30+
31+
# Maximum number of statements in a try-block
32+
max-try-statements=7
33+
34+
# Maximum number of positional arguments (see R0917).
35+
max-positional-arguments=12
36+
1537
[MESSAGES CONTROL]
1638
disable=missing-docstring
1739

0 commit comments

Comments
 (0)