blob: a0c4ce15627efc2951bd11bdb11cff9b094101a8 [file] [log] [blame]
mikehoran63d61b42017-07-28 15:28:50 -07001[MESSAGES CONTROL]
2
3disable=relative-import,too-few-public-methods,fixme
4
5[BASIC]
6
7# Naming hint for method names
mikehoranbe9102f2017-08-04 16:04:03 -07008method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
mikehoran63d61b42017-07-28 15:28:50 -07009
10# Regular expression matching correct method names
mikehoranbe9102f2017-08-04 16:04:03 -070011method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
mikehoran3622d9a2017-09-20 15:43:54 -070012
13[DESIGN]
mikehoran95091b22017-10-31 15:55:26 -070014
mikehoran3622d9a2017-09-20 15:43:54 -070015# Maximum number of return / yield for function / method body
16max-returns=10
mikehoran95091b22017-10-31 15:55:26 -070017
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
Kevin Cheng8b2c94c2017-12-18 14:43:26 -080023
24[SIMILARITIES]
25
26# Ignore similar imports.
27ignore-imports=y