Chromium Code Reviews| 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-enabled, | |
|
jbudorick
2016/12/12 18:40:56
remove this
mikecase (-- gone --)
2016/12/12 19:50:25
Done
| |
| 19 locally-disabled, | |
| 18 missing-docstring, | 20 missing-docstring, |
| 19 too-few-public-methods, | 21 too-few-public-methods, |
| 20 too-many-arguments, | 22 too-many-arguments, |
| 21 too-many-branches, | 23 too-many-branches, |
| 22 too-many-instance-attributes, | 24 too-many-instance-attributes, |
| 23 too-many-lines, | 25 too-many-lines, |
| 24 too-many-locals, | 26 too-many-locals, |
| 25 too-many-public-methods, | 27 too-many-public-methods, |
| 26 too-many-statements, | 28 too-many-statements, |
| 27 | 29 |
| 28 [REPORTS] | 30 [REPORTS] |
| 29 | 31 |
| 30 reports=no | 32 reports=no |
| 31 | 33 |
| 32 [VARIABLES] | 34 [VARIABLES] |
| 33 | 35 |
| 34 dummy-variables-rgx=^_.*$|dummy | 36 dummy-variables-rgx=^_.*$|dummy |
| OLD | NEW |