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= | 15 disable= |
16 fixme, | 16 fixme, |
17 invalid-name, | 17 invalid-name, |
| 18 locally-disabled, |
18 missing-docstring, | 19 missing-docstring, |
19 too-few-public-methods, | 20 too-few-public-methods, |
20 too-many-arguments, | 21 too-many-arguments, |
21 too-many-branches, | 22 too-many-branches, |
22 too-many-instance-attributes, | 23 too-many-instance-attributes, |
23 too-many-lines, | 24 too-many-lines, |
24 too-many-locals, | 25 too-many-locals, |
25 too-many-public-methods, | 26 too-many-public-methods, |
26 too-many-statements, | 27 too-many-statements, |
27 | 28 |
28 [REPORTS] | 29 [REPORTS] |
29 | 30 |
30 reports=no | 31 reports=no |
31 | 32 |
32 [VARIABLES] | 33 [VARIABLES] |
33 | 34 |
34 dummy-variables-rgx=^_.*$|dummy | 35 dummy-variables-rgx=^_.*$|dummy |
OLD | NEW |