Enforce the specified order for methods.
{
scopesOrder: <string[]>,
staticInTheEnd: <boolean>
}
An array of the scopes ('public', 'protected', 'private') that indicates the order in which methods should be defined in the class body.
The default value is ['public', 'protected', 'private'].
Whether static methods should be in the end of the class body. The default value is true.