1[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
18good-names=e, f, logger, ip, main
19
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"))'
25