You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
687 B
25 lines
687 B
[MESSAGES CONTROL]
|
|
|
|
disable=
|
|
relative-import,
|
|
too-few-public-methods,
|
|
fixme,
|
|
too-many-instance-attributes,
|
|
too-many-arguments
|
|
|
|
[BASIC]
|
|
|
|
# Acloud uses PascalCase for functions/methods except for test methods which use
|
|
# camelCase.
|
|
method-rgx=[A-Z_][a-zA-Z0-9]{2,30}$|(__[a-z][a-zA-Z0-9_]+__)$|test[A-Z_][a-zA-Z0-9]{2,30}$
|
|
function-rgx=[A-Z_][a-zA-Z0-9]{2,30}$|(__[a-z][a-zA-Z0-9_]+__)$
|
|
|
|
# Good variable names which should always be accepted, separated by a comma
|
|
good-names=e, f, logger, ip, main
|
|
|
|
[SIMILARITIES]
|
|
ignore-imports=yes
|
|
|
|
[Master]
|
|
init-hook='import sys; sys.path.append(os.path.join(os.path.expandvars("$ANDROID_BUILD_TOP"), "external", "python", "mock"))'
|