I would like to propose a rule that enforces consistent spacing between class functions. The following patterns would be considered problems: ``` javascript class Test1 { constructor () { // ... } otherFunc () { // ... } } class Test2 { constructor () { // ... } otherFunc () { // ... } } ``` The following pattern would be considered valid: ``` javascript class Test3 { constructor () { // ... } otherFunc () { // ... } } ```