blob: 9e55a5210f8b6ffd2762a5aa7af95400a5674c16 [file] [log] [blame] [edit]
[BASIC]
# Regular expression matching correct method names
method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
# Good variable names which should always be accepted, separated by a comma
good-names=e, f, i, j
# Naming style for methods
method-naming-style=snake_case
[DESIGN]
# Maximum number of arguments for function / method
max-args=6
# Maximum number of return / yield for function / method body
max-returns=10
# Maximum number of public methods for a class (see R0904).
max-public-methods=40
[SIMILARITIES]
# Ignore similar imports.
ignore-imports=y