1[MESSAGES CONTROL] 2 3disable=relative-import,too-few-public-methods,fixme 4 5[BASIC] 6 7# Naming hint for method names 8method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$ 9 10# Regular expression matching correct method names 11method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$ 12 13[DESIGN] 14 15# Maximum number of return / yield for function / method body 16max-returns=10 17 18# Maximum number of public methods for a class (see R0904). 19max-public-methods=40 20 21# Maximum number of attributes for a class (see R0902). 22max-attributes=20 23 24[SIMILARITIES] 25 26# Ignore similar imports. 27ignore-imports=y 28