Home | History | Annotate | Download | only in core
      1 [MESSAGES CONTROL]
      2 
      3 disable=relative-import,too-few-public-methods,fixme
      4 
      5 [BASIC]
      6 
      7 # Naming hint for method names
      8 method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
      9 
     10 # Regular expression matching correct method names
     11 method-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
     16 max-returns=10
     17 
     18 # Maximum number of public methods for a class (see R0904).
     19 max-public-methods=40
     20 
     21 # Maximum number of attributes for a class (see R0902).
     22 max-attributes=20
     23 
     24 [SIMILARITIES]
     25 
     26 # Ignore similar imports.
     27 ignore-imports=y
     28