Open
Description
It's possible that I didn't try all the possible options, but it doesn't seem like there is a suitable brace break option that allows you to break before braces after a getter/setter. For example, it changes the following code:
get
{
.....
}
into
get {
......
}
when I want it to remain as
get
{
.....
}