feature request: wrapping/formatting class declaration
Brought to you by:
ernestpasour
There are options to wrap and format array declarations, method arguments, method parameters, general expressions and embedded xml (values are "Don't format", "Format without changing newlines", "Keep on single line", "Wrap to max length" and "Format without changing newlines"). But class declaration hasn't same option.
Example:
source code:
class MyClass extends BaseClass
implements ISomeInterface {
output:
class MyClass extends BaseClass implements ISomeInterface {
should be (if requested option value is "Format without changing newlines"):
class MyClass extends BaseClass
implements ISomeInterface {
I'll take a look and see if I can support that either as a new item or under 'general expressions"