1[BASIC] 2 3# Regular expression matching correct method names 4method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$ 5 6# Good variable names which should always be accepted, separated by a comma 7good-names=e, f, i, j 8 9# Naming style for methods 10method-naming-style=snake_case 11 12[DESIGN] 13 14# Maximum number of arguments for function / method 15max-args=6 16 17# Maximum number of return / yield for function / method body 18max-returns=10 19 20# Maximum number of public methods for a class (see R0904). 21max-public-methods=40 22 23[SIMILARITIES] 24 25# Ignore similar imports. 26ignore-imports=y 27