blob: fb021fba58956d051dd20d2748869b8e9479a631 [file] [log] [blame]
mikehoran63d61b42017-07-28 15:28:50 -07001[MESSAGES CONTROL]
2
Dan Shi6daad632018-08-30 10:58:03 -07003disable=
4 relative-import,
5 too-few-public-methods,
6 too-many-instance-attributes,
7 fixme,no-self-use,
8 duplicate-code
mikehoran63d61b42017-07-28 15:28:50 -07009
kellyhung792fbcf2018-11-19 16:25:50 +080010[MASTER]
11
12init-hook='import sys, os; sys.path.append(os.getcwd() + '/atest')'
13
mikehoran63d61b42017-07-28 15:28:50 -070014[BASIC]
15
16# Naming hint for method names
mikehoranbe9102f2017-08-04 16:04:03 -070017method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
mikehoran63d61b42017-07-28 15:28:50 -070018
19# Regular expression matching correct method names
mikehoranbe9102f2017-08-04 16:04:03 -070020method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
mikehoran3622d9a2017-09-20 15:43:54 -070021
nelsonlic4a71452018-09-13 14:10:30 +080022# Good variable names which should always be accepted, separated by a comma
23good-names=e, f, i, j
24
mikehoran3622d9a2017-09-20 15:43:54 -070025[DESIGN]
mikehoran95091b22017-10-31 15:55:26 -070026
kellyhungaa0d0c72018-09-11 19:44:04 +080027# Maximum number of arguments for function / method
28max-args=6
29
mikehoran3622d9a2017-09-20 15:43:54 -070030# Maximum number of return / yield for function / method body
31max-returns=10
mikehoran95091b22017-10-31 15:55:26 -070032
33# Maximum number of public methods for a class (see R0904).
34max-public-methods=40
35
Kevin Cheng8b2c94c2017-12-18 14:43:26 -080036[SIMILARITIES]
37
38# Ignore similar imports.
39ignore-imports=y