| OLD | NEW |
| 1 [BASIC] | 1 [BASIC] |
| 2 | 2 |
| 3 function-rgx=[A-Z_][a-zA-Z0-9_]{2,30}$ | 3 function-rgx=[A-Z_][a-zA-Z0-9_]{2,30}$ |
| 4 method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$ | 4 method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$ |
| 5 | 5 |
| 6 good-names=e,f,i,j,k,main,_ | 6 good-names=e,f,i,j,k,main,_ |
| 7 | 7 |
| 8 [FORMAT] | 8 [FORMAT] |
| 9 | 9 |
| 10 indent-string=' ' | 10 indent-string=' ' |
| 11 max-line-length=80 | 11 max-line-length=80 |
| 12 | 12 |
| 13 [MESSAGES CONTROL] | 13 [MESSAGES CONTROL] |
| 14 | 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, | 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 | 16 |
| 17 [REPORTS] | 17 [REPORTS] |
| 18 | 18 |
| 19 reports=no | 19 reports=no |
| 20 | 20 |
| 21 [VARIABLES] | 21 [VARIABLES] |
| 22 | 22 |
| 23 dummy-variables-rgx=^_.*$|dummy | 23 dummy-variables-rgx=^_.*$|dummy |
| OLD | NEW |