File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,31 @@ variable-rgx=(?:(?P<snake>[a-z_]+))
99generated-members =RdBu
1010
1111[DESIGN]
12+
13+ # Maximum number of arguments for function / method
1214max-args =10
15+
16+ # Maximum number of locals for function / method body
1317max-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]
1638disable =missing-docstring
1739
You can’t perform that action at this time.
0 commit comments