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 |
| 18 | good-names=e, f, logger |