Kevin Cheng | 5554d2e | 2018-05-16 13:21:51 -0700 | [diff] [blame] | 1 | [MESSAGES CONTROL] |
| 2 | |
| 3 | disable= |
| 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. |
| 14 | 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}$ |
| 15 | function-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 |
cylan | 0d77ae1 | 2018-05-18 08:36:48 +0000 | [diff] [blame] | 18 | good-names=e, f, logger, ip, main |
Richard Fung | 97503b2 | 2019-02-06 13:43:38 -0800 | [diff] [blame] | 19 | |
| 20 | [SIMILARITIES] |
| 21 | ignore-imports=yes |
| 22 | |
| 23 | [Master] |
| 24 | init-hook='import sys; sys.path.append(os.path.join(os.path.expandvars("$ANDROID_BUILD_TOP"), "external", "python", "mock"))' |