blob: d79fe23e1ba24f61c6361635de258ca938e9cc9a [file] [log] [blame]
Kevin Cheng5554d2e2018-05-16 13:21:51 -07001[MESSAGES CONTROL]
2
3disable=
4 relative-import,
5 too-few-public-methods,
6 fixme,
7 too-many-instance-attributes,
8 too-many-arguments
9
10[BASIC]
11
12# Acloud uses PascalCase for functions/methods except for test methods which use
13# camelCase.
14method-rgx=[A-Z_][a-zA-Z0-9]{2,30}$|(__[a-z][a-zA-Z0-9_]+__)$|test[A-Z_][a-zA-Z0-9]{2,30}$
15function-rgx=[A-Z_][a-zA-Z0-9]{2,30}$|(__[a-z][a-zA-Z0-9_]+__)$
16
17# Good variable names which should always be accepted, separated by a comma
cylan0d77ae12018-05-18 08:36:48 +000018good-names=e, f, logger, ip, main
Richard Fung97503b22019-02-06 13:43:38 -080019
20[SIMILARITIES]
21ignore-imports=yes
22
23[Master]
24init-hook='import sys; sys.path.append(os.path.join(os.path.expandvars("$ANDROID_BUILD_TOP"), "external", "python", "mock"))'