Jintin / Swimat

An Xcode formatter plug-in to format your swift code.
https://jintin.github.io/Swimat/
MIT License
1.65k stars 89 forks source link

Opening curly brace indentation for if operator #182

Closed Tieru closed 6 years ago

Tieru commented 7 years ago

Is there any way to format if body like this:

if condition
{
        expression()
}

Currently plugin indents the first curly brace:

if condition
    {
    expression()
}

which doesn't fit our team's code style