| OLD | NEW |
| (Empty) |
| 1 [BASIC] | |
| 2 | |
| 3 function-rgx=[A-Z_][a-zA-Z0-9_]{2,30}$ | |
| 4 method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$ | |
| 5 | |
| 6 good-names=e,f,i,j,k,main,_ | |
| 7 | |
| 8 [FORMAT] | |
| 9 | |
| 10 indent-string=' ' | |
| 11 max-line-length=80 | |
| 12 | |
| 13 [MESSAGES CONTROL] | |
| 14 | |
| 15 disable=invalid-name,missing-docstring,too-few-public-methods,too-many-arguments
,too-many-branches,too-many-instance-attributes,too-many-lines,too-many-locals,t
oo-many-public-methods,too-many-statements, | |
| 16 | |
| 17 [REPORTS] | |
| 18 | |
| 19 reports=no | |
| 20 | |
| 21 [VARIABLES] | |
| 22 | |
| 23 dummy-variables-rgx=^_.*$|dummy | |
| OLD | NEW |